2015-04-23 09:54:15 +00:00
|
|
|
from setuptools import setup
|
2014-01-23 01:44:19 +00:00
|
|
|
|
|
|
|
setup(
|
2015-04-23 09:54:15 +00:00
|
|
|
name='pydle',
|
2016-12-20 16:26:42 +00:00
|
|
|
version='0.8.3',
|
2014-01-23 01:44:19 +00:00
|
|
|
packages=[
|
|
|
|
'pydle',
|
|
|
|
'pydle.features',
|
2014-02-15 22:12:19 +00:00
|
|
|
'pydle.features.rfc1459',
|
2015-05-08 12:25:16 +00:00
|
|
|
'pydle.features.ircv3',
|
2014-01-23 01:44:19 +00:00
|
|
|
'pydle.utils'
|
|
|
|
],
|
2018-03-14 04:05:08 +00:00
|
|
|
install_requires=['tornado==4.5.3'],
|
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',
|
2014-02-21 18:47:39 +00:00
|
|
|
'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.',
|
2015-04-23 09:54:15 +00:00
|
|
|
license='BSD',
|
2014-01-23 01:44:19 +00:00
|
|
|
|
|
|
|
zip_safe=True,
|
|
|
|
test_suite='tests'
|
|
|
|
)
|