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

from setuptools import setup

setup(
    name="Gamelocker-API",
    version="0.1",
    description="Gamelocker API Wrapper",
    author="schneefux",
    py_modules=["gamelocker"],
    setup_requires=["pytest-runner"],
    tests_require=["pytest"]
)