-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 850 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
Warmachine setup.py file for distribution
"""
from setuptools import setup, find_packages
setup(
name="dbolla",
version='0.1',
description="D'bolla is a no bullshit extensible IRC & Slack bot",
packages=find_packages(),
install_requires=['websockets', ],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Communications :: Chat',
'License :: Other/Proprietary License',
# 'License :: OSI Approved :: GNU Lesser General Public License v3 '
# '(LGPLv3)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
scripts=[
'bin/dbolla',
],
)