-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
44 lines (39 loc) · 1.28 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
"""Setup module for txrudp."""
import codecs
from os import path
import sys
from setuptools import setup
_HERE = path.abspath(path.dirname(__file__))
with codecs.open(path.join(_HERE, 'README.rst'), encoding='utf-8') as f:
_LONG_DESCRIPTION = f.read()
setup(
name='txrudp',
version='0.5.1',
description='A Twisted extension implementing RUDP',
long_description=_LONG_DESCRIPTION,
url='https://github.com/OpenBazaar/txrudp',
author='Nikolaos Korasidis',
author_email='renelvon@gmail.com',
license='MIT',
classifiers=(
'Development Status :: 4 - Beta',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: System :: Networking'
),
keywords='rudp twisted reliable',
packages=('txrudp', 'tests'),
install_requires=('enum34', 'protobuf', 'twisted'),
extras_require={
'crypto': ('pynacl',)
},
tests_require=('coverage', 'nose', 'mock'),
test_suite='nose.collector',
include_package_data=True,
zip_safe=False
)