-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 916 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
from setuptools import setup
import nusbot
setup(
name='nusbot',
version=nusbot.__version__,
description='adc bot annoucing changes in filelist of hub\'s users',
url='https://github.com/kraiz/nusbot',
author='Lars Kreisz',
author_email='[email protected]',
license='MIT',
packages=['nusbot', 'twisted.plugins'],
install_requires=['twisted'],
long_description=open('README.rst').read() + '\n\n' + open('CHANGES.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Communications :: Chat',
'Topic :: Communications :: File Sharing',
],
)