-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
44 lines (39 loc) · 1.51 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 os import path
import sys
from setuptools import setup, find_packages
from guv import __version__
if sys.version_info < (3, 2):
raise Exception('guv requires Python 3.2 or higher')
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
# "Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
]
setup(
name='guv',
version=__version__,
description='Python 3 networking library based on greenlets and libuv',
author='V G',
author_email='veegee@veegee.org',
url='http://guv.readthedocs.org',
install_requires=['greenlet>=0.4.0', 'cffi>=0.8.0', 'dnspython3>=1.12.0'],
zip_safe=False,
long_description=open(path.join(path.dirname(__file__), 'README.rst')).read(),
tests_require=['pytest>=2.6'],
classifiers=classifiers,
packages=find_packages(exclude=['ez_setup']),
package_data={'pyuv_cffi': ['*.c']}
)