-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 897 Bytes
/
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
from setuptools import setup, find_packages
import pathlib
from MyListAnalyzerAPI import __version__
here = pathlib.Path(__file__).parent
packages = find_packages(str(here))
packages.remove("Tests")
req = here / "requirements.txt"
setup(
name="MyListAnalyzerAPI",
version=__version__,
description="API for MyAnimeListAnalyzer Dash",
url="https://github.com/RahulARanger/MyListAnalyzer",
author="RahulARanger",
author_email="saihanumarahul66@gmail.com",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: MyAnimeList Users",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
packages=packages,
python_requires=">=3.7, <4",
install_requires=req.read_text()
)