|
| 1 | +from distutils.core import setup |
| 2 | +from pathlib import Path |
| 3 | + |
| 4 | +this_directory = Path(__file__).parent |
| 5 | +long_description = (this_directory / "README.md").read_text() |
| 6 | + |
| 7 | +setup( |
| 8 | + name="simple-justwatch-python-api", |
| 9 | + packages=["simplejustwatchpythonapi"], |
| 10 | + package_dir={"simplejustwatchpythonapi": "src/simplejustwatchpythonapi"}, |
| 11 | + version="0.1", |
| 12 | + license="GPLv3", |
| 13 | + description="A simple JustWatch Python API", |
| 14 | + long_description=long_description, |
| 15 | + long_description_content_type="text/markdown", |
| 16 | + author="Electronic Mango", |
| 17 | + |
| 18 | + url="https://github.com/Electronic-Mango/simple-justwatch-python-api", |
| 19 | + download_url="https://github.com/Electronic-Mango/simple-justwatch-python-api/releases/", |
| 20 | + keywords=["justwatch", "api", "graphql"], |
| 21 | + install_requires=["httpx"], |
| 22 | + classifiers=[ |
| 23 | + "Development Status :: 3 - Alpha", |
| 24 | + "Intended Audience :: Developers", |
| 25 | + "Topic :: Software Development :: Build Tools", |
| 26 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.11", |
| 29 | + ], |
| 30 | +) |
0 commit comments