-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (42 loc) · 1.45 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
45
46
47
48
49
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
import re
VERSION_RE = re.compile(r"""__version__ = ['"]([0-9.]+)['"]""")
BASE_PATH = os.path.dirname(__file__)
with open(os.path.join(BASE_PATH, "pyprocs.py")) as f:
try:
version = VERSION_RE.search(f.read()).group(1)
except IndexError:
raise RuntimeError("Unable to determine version.")
with open(os.path.join(BASE_PATH, "README.md")) as readme:
long_description = readme.read()
setup(
name="pyprocs",
description="Multiprocess manager",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
version=version,
author="Yingbo Gu",
author_email="[email protected]",
maintainer="Yingbo Gu",
maintainer_email="[email protected]",
url="https://github.com/guyingbo/pyprocs",
py_modules=["pyprocs"],
install_requires=["async-timeout", "typer"],
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "coverage", "pytest-cov", "pytest-asyncio"],
)