forked from abhinavk99/jikanpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
# optionally read the CHANGELOG.md file, to include this with pypi releases
# may not be necessary, just to be safe
CHANGELOG_FILE = HERE / "CHANGELOG.md"
CHANGELOG = CHANGELOG_FILE.read_text() if CHANGELOG_FILE.exists() else ""
setup(
name="jikanpy_v4",
version="1.0.2",
description="Python wrapper for the Jikan API",
license="MIT",
long_description=README + CHANGELOG,
long_description_content_type="text/markdown",
author="Chris Peterson",
author_email="[email protected]",
package_data={"jikanpy": ["py.typed"]},
packages=["jikanpy"],
url="https://github.com/abhinavk99/jikanpy",
install_requires=["requests", "aiohttp", "simplejson"],
keywords=["jikan", "jikanpy", "api", "myanimelist"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
],
zip_safe=False,
python_requires=">=3.6",
)