-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·44 lines (37 loc) · 1.72 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
#!/usr/bin/env python
from setuptools import setup
if __name__ == '__main__':
summary = 'Pure-Python non-blocking IO functions'
try:
with open('README.rst', 'rt') as f:
long_description = f.read()
except:
long_description = summary
setup(name='python-nonblock',
version='4.0.1',
packages=['nonblock'],
author='Tim Savannah',
author_email='[email protected]',
maintainer='Tim Savannah',
url='https://github.com/kata198/python-nonblock',
maintainer_email='[email protected]',
description=summary,
long_description=long_description,
license='LGPLv2',
keywords=['python', 'nonblock', 'nonblocking', 'io', 'blocking', 'non', 'read', 'read1', 'file', 'stream', 'pure', 'function'],
classifiers=['Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Topic :: System',
]
)
#vim: set ts=4 sw=4 expandtab