-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 752 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 752 Bytes
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
from setuptools import setup, find_packages
from pycri import __version__
setup(
name='pycri',
version=__version__,
description='IRC-bot',
author='Marcus Carlsson',
author_email='carlsson.marcus@gmail.com',
url='https://github.com/xintron/pycri',
package_data={'':['*.py']},
packages=find_packages(),
provides=[
'pycri',
],
install_requires=['twisted'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Communications :: Chat :: Internet Relay Chat',
]
)