-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
47 lines (36 loc) · 1.22 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import brutal
from setuptools import setup, find_packages
setup(
name='brutal',
version=brutal.__version__,
description='a multi-network asynchronous chat bot framework using twisted.',
long_description=open('README.rst').read(),
author='Corey Bertram',
author_email='[email protected]',
url='https://github.com/Netflix/brutal',
scripts=['brutal/bin/brutal-overlord.py', ],
include_package_data=True,
packages=find_packages(),
license=open('LICENSE').read(),
install_requires=[
'Twisted >= 12.1.0',
'wokkel == 0.7.1',
'pyOpenSSL == 0.13',
],
keywords='twisted',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Twisted',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Chat :: Internet Relay Chat',
'License :: OSI Approved :: Apache Software License',
],
)