-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (43 loc) · 1.15 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
from setuptools import (
setup,
find_packages,
)
setup(
name='azmq',
author='Julien Kauffmann',
author_email='julien.kauffmann@freelan.org',
maintainer='Julien Kauffmann',
maintainer_email='julien.kauffmann@freelan.org',
version=open('VERSION').read().strip(),
url='http://ereOn.github.io/azmq',
description=(
"An asyncio-native implementation of ZMTP (ZMQ)."
),
long_description="""\
AZMQ is an implementation of ZMTP (the protocol behind ZMQ) using native Python
3 asyncio sockets.
""",
packages=find_packages(exclude=[
'tests',
]),
install_requires=[
'pyslot>=2.0.0,<3',
],
extras_require={
'csodium': [
'csodium>=0.0.1',
],
'pysodium': [
'pysodium>=0.6.9',
],
},
test_suite='tests',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 5 - Production/Stable',
],
)