diff options
| author | jason | 2016-08-18 19:03:55 -0600 |
|---|---|---|
| committer | jason | 2016-08-18 19:03:55 -0600 |
| commit | a427cd070d2246264e555b3d4779ebde8acd2e08 (patch) | |
| tree | 2e5330b20239056ce96df38b38c83e192cc609cf /setup.py | |
| parent | 1fce7b900a05c46c6e7196dd0d555a9df763cc27 (diff) | |
| download | warmachine-ng-a427cd070d2246264e555b3d4779ebde8acd2e08.tar.gz warmachine-ng-a427cd070d2246264e555b3d4779ebde8acd2e08.zip | |
create a setup.py file
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5b2ba44 --- /dev/null +++ b/setup.py | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | """ | ||
| 2 | Warmachine setup.py file for distribution | ||
| 3 | """ | ||
| 4 | from setuptools import setup, find_packages | ||
| 5 | |||
| 6 | setup( | ||
| 7 | name="dbolla", | ||
| 8 | version='0.1', | ||
| 9 | description="D'bolla is a no bullshit extensible IRC & Slack bot", | ||
| 10 | packages=find_packages(), | ||
| 11 | install_requires=['websockets', ], | ||
| 12 | |||
| 13 | # See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
| 14 | classifiers=[ | ||
| 15 | 'Development Status :: 3 - Alpha', | ||
| 16 | |||
| 17 | 'Intended Audience :: Developers', | ||
| 18 | 'Intended Audience :: System Administrators', | ||
| 19 | |||
| 20 | 'Topic :: Communications :: Chat', | ||
| 21 | |||
| 22 | 'License :: Other/Proprietary License', | ||
| 23 | # 'License :: OSI Approved :: GNU Lesser General Public License v3 ' | ||
| 24 | # '(LGPLv3)', | ||
| 25 | |||
| 26 | 'Programming Language :: Python :: 3.5', | ||
| 27 | 'Programming Language :: Python :: 3.6', | ||
| 28 | |||
| 29 | ], | ||
| 30 | scripts=[ | ||
| 31 | 'bin/dbolla', | ||
| 32 | ], | ||
| 33 | ) | ||