pydle/setup.py

40 lines
1.1 KiB
Python
Raw Normal View History

2014-01-23 01:44:19 +00:00
from setuptools import setup, find_packages
import pydle
setup(
name=pydle.__name__,
version=pydle.__version__,
packages=[
'pydle',
'pydle.features',
'pydle.features.rfc1459',
'pydle.features.ircv3_1',
'pydle.features.ircv3_2',
2014-01-23 01:44:19 +00:00
'pydle.utils'
],
requires=['tornado'],
2014-01-23 01:44:19 +00:00
extras_require={
2014-03-15 07:11:52 +00:00
'sasl': 'pure-sasl >=0.1.6', # for pydle.features.sasl
'docs': 'sphinx_rtd_theme', # the Sphinx theme we use
'tests': 'pytest', # collect and run tests
'coverage': 'pytest-cov' # get test case coverage
2014-01-23 01:44:19 +00:00
},
entry_points={
'console_scripts': [
'pydle = pydle.utils.run:main',
'ipydle = pydle.utils.console:main',
'pydle-irccat = pydle.utils.irccat:main'
2014-01-23 01:44:19 +00:00
]
},
author='Shiz',
author_email='hi@shiz.me',
2014-01-30 02:52:39 +00:00
url='https://github.com/Shizmob/pydle',
2014-01-23 01:44:19 +00:00
keywords='irc library python3 compact flexible',
description='A compact, flexible and standards-abiding IRC library for Python 3.',
license=pydle.__license__,
zip_safe=True,
test_suite='tests'
)