aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2016-08-18 19:03:55 -0600
committerjason2016-08-18 19:03:55 -0600
commita427cd070d2246264e555b3d4779ebde8acd2e08 (patch)
tree2e5330b20239056ce96df38b38c83e192cc609cf
parent1fce7b900a05c46c6e7196dd0d555a9df763cc27 (diff)
downloadwarmachine-ng-a427cd070d2246264e555b3d4779ebde8acd2e08.tar.gz
warmachine-ng-a427cd070d2246264e555b3d4779ebde8acd2e08.zip
create a setup.py file
-rw-r--r--setup.py33
-rw-r--r--warmachine/__init__.py0
2 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"""
2Warmachine setup.py file for distribution
3"""
4from setuptools import setup, find_packages
5
6setup(
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)
diff --git a/warmachine/__init__.py b/warmachine/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/warmachine/__init__.py