-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (31 loc) · 856 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
34
35
#!/usr/bin/env python3
from setuptools import setup, find_packages
import sys
sys.path.insert(0, 'src')
from modularirc import __version__
setup(
name='modularirc',
version=__version__,
author='Jasper Seidel',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/jawsper/modularirc',
license='LICENSE.txt',
description='A modular, extensible IRC bot.',
long_description=open('README.rst').read(),
install_requires=[
'irc',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'ircbot.py=modularirc.run:main'
]
},
test_suite='tests',
)