-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (50 loc) · 1.67 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
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
"""The setup script."""
import os
import sys
from setuptools import find_packages, setup
sys.path.append(os.path.dirname(__file__)) # noqa: PTH120
import dependencies
import versioneer
tests_require = dependencies.ci_requires
install_requires = dependencies.install_requires
setup_requires = dependencies.setup_requires()
install_suggests = dependencies.install_suggests
with open("README.md") as readme_file: # noqa: PTH123
readme = readme_file.read()
setup(
author="René Fritze",
author_email="[email protected]",
python_requires=">=3.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
description="MPI Aware section timings",
entry_points={
"console_scripts": [
"pytimings=pytimings.cli:main",
],
},
tests_require=tests_require,
install_requires=install_requires,
extras_require=dependencies.extras(),
license="BSD license",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="pytimings",
name="pytimings",
packages=find_packages(include=["pytimings", "pytimings.*"]),
url="https://github.com/renefritze/pytimings",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
zip_safe=False,
)