diff options
| -rw-r--r-- | setup.py | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -3,11 +3,14 @@ from setuptools import setup setup( - name="Gamelocker-API", + name="python-gamelocker", version="0.1", - description="Gamelocker API Wrapper", + description="Python Gamelocker API Wrapper", author="schneefux", - py_modules=["gamelocker"], + author_email="schneefux+pypi_schneefux@schneefux.xyz", + url="https://git.schneefux.xyz/schneefux/python-gamelocker", + packages=["gamelocker"], + install_requires=["requests"], setup_requires=["pytest-runner"], tests_require=["pytest"] ) |
