Changeset 232:59f26b03d1a9 for setup.py
- Timestamp:
- Feb 21, 2018, 9:18:45 AM (4 years ago)
- Branch:
- default
- hg-git-rename-source:
- git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r214 r232 4 4 # See LICENSE for details. 5 5 6 import sys7 6 from setuptools import setup 8 7 … … 29 28 egg_info.write_toplevel_names = _hacked_write_toplevel_names 30 29 31 if sys.version_info < (3, 0): 32 requiredTwisted = "15.5.0" 33 else: 34 requiredTwisted = "16.4.0" 30 with open('README.rst', 'r') as f: 31 long_description = f.read() 35 32 36 33 setup(name='wokkel', 37 version='0.7.1',38 34 description='Twisted Jabber support library', 35 long_description = long_description, 39 36 author='Ralph Meijer', 40 37 author_email='ralphm@ik.nu', 41 38 maintainer_email='ralphm@ik.nu', 42 url='http ://wokkel.ik.nu/',39 url='https://wokkel.ik.nu/', 43 40 license='MIT', 44 41 platforms='any', 42 classifiers=[ 43 'Programming Language :: Python :: 2.7', 44 'Programming Language :: Python :: 3', 45 'Programming Language :: Python :: 3.3', 46 'Programming Language :: Python :: 3.4', 47 'Programming Language :: Python :: 3.5', 48 'Programming Language :: Python :: 3.6', 49 ], 45 50 packages=[ 46 51 'wokkel', … … 50 55 package_data={'twisted.plugins': ['twisted/plugins/server.py']}, 51 56 zip_safe=False, 57 setup_requires=[ 58 'incremental', 59 ], 60 use_incremental=True, 52 61 install_requires=[ 53 ' Twisted >= %s' % requiredTwisted,62 'incremental', 54 63 'python-dateutil', 55 64 ], 65 extras_require={ 66 ":python_version<'3'": 'Twisted[tls]>=15.5.0', 67 ":python_version>'3'": 'Twisted[tls]>=16.4.0', 68 }, 56 69 )
Note: See TracChangeset
for help on using the changeset viewer.