diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-01-12 22:56:54 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-01-12 22:56:54 +0100 |
| commit | 2c96397c95c359b6033b8d1106d067f049a54152 (patch) | |
| tree | be7595b6af77f8101df386b3147672092c1072d1 /setup.py | |
| download | python-gamelocker-2c96397c95c359b6033b8d1106d067f049a54152.tar.gz python-gamelocker-2c96397c95c359b6033b8d1106d067f049a54152.zip | |
first commit - first API draft
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b73b180 --- /dev/null +++ b/setup.py @@ -0,0 +1,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"] +) |
