-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
59 lines (55 loc) · 2.25 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from setuptools import setup
__author__ = "Martin Uhrin"
__license__ = "Apache v2, see LICENSE file"
__contributors__ = "Sebastiaan Huber"
about = {}
with open('topika/version.py') as f:
exec(f.read(), about)
setup(
name="topika",
version=about['__version__'],
description='A python remote communications library',
long_description=open('README.rst').read(),
url='https://github.com/muhrin/topika.git',
author='Martin Uhrin',
author_email='martin.uhrin@gmail.com',
license=__license__,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Microsoft',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='communication messaging rpc broadcast',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
# Abstract dependencies.
# See https://caremad.io/2013/07/setup-vs-requirement/ for an explanation and
# http://blog.miguelgrinberg.com/post/the-package-dependency-blues
# for a useful dicussion
install_requires=['tornado>=4.0, <6.0', 'pika>=1.0.0', 'shortuuid', 'six', 'furl'],
extras_require={
'dev': ['pytest>=4', 'pytest-cov', 'ipython', 'twine', 'future'],
':python_version<"3.5"': ['typing'],
':python_version<"3.4"': ['enum34', 'singledispatch'],
':python_version<"3.3"': ['mock'],
':python_version<"3.2"': ['backports.tempfile'],
},
packages=['topika'],
test_suite='test')