forked from dabeaz/curio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 888 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
tests_require = ['pytest', 'Sphinx']
long_description = """
Curio is a coroutine-based library for concurrent systems programming.
"""
setup(name="curio",
description="Curio",
long_description=long_description,
license="BSD",
version="1.3",
author="David Beazley",
maintainer="David Beazley",
url="https://github.com/dabeaz/curio",
packages=['curio'],
tests_require=tests_require,
extras_require={
'test': tests_require,
},
python_requires='>= 3.6',
entry_points={"pytest11": ["curio = curio.pytest_plugin"]},
classifiers=[
'Programming Language :: Python :: 3',
"Framework :: Pytest",
])