summaryrefslogtreecommitdiff
path: root/setup.py
blob: 0f0962a239c7cdbf2d3f546d92aed0fb66c62281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python

from setuptools import setup

setup(
    name="python-gamelocker",
    version="0.3.0",
    description="Python Gamelocker API Wrapper",
    author="schneefux",
    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"]
)