-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
44 lines (39 loc) · 1.13 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
#!/user/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
try:
with open('README.md', errors='replace') as f:
readme = f.read()
except IOError:
readme = ''
# requirements
here = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(here, 'requirements.txt')) as fp:
install_requires = fp.read()
except Exception:
install_requires = ""
setup(
name="srudp",
version="0.3.8",
url='https://github.com/namuyan/srudp',
author='namuyan',
description='secure reliable udp socket implemented by PurePython',
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=install_requires,
license="MIT Licence",
keywords='RUDP UDP P2P hole-punching',
python_requires='>=3.6',
classifiers=[
'Typing :: Typed',
'Topic :: Internet',
'Framework :: AsyncIO',
'Topic :: System :: Networking',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
)