-
Notifications
You must be signed in to change notification settings - Fork 244
/
setup.py
executable file
·36 lines (32 loc) · 1.11 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
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. No longer
maintained as a PyPi project. Latest version is available on GitHub.
"""
setup(name="curio",
description="Curio",
long_description=long_description,
license="BSD",
version="1.6",
author="David Beazley",
author_email="[email protected]",
maintainer="David Beazley",
maintainer_email="[email protected]",
url="https://github.com/dabeaz/curio",
packages=['curio'],
tests_require=tests_require,
extras_require={
'test': tests_require,
},
python_requires='>= 3.7',
# This is disabled because it often causes interference with other testing
# plugins people have written. Curio doesn't use it for it's own testing.
# entry_points={"pytest11": ["curio = curio.pytest_plugin"]},
classifiers=[
'Programming Language :: Python :: 3',
"Framework :: Pytest",
])