Skip to content

Commit 7ccc47f

Browse files
Add setup.py and setup.cfg
1 parent a007517 commit 7ccc47f

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
author_email="[email protected]",
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

Comments
 (0)