-
Notifications
You must be signed in to change notification settings - Fork 152
/
setup.py
96 lines (81 loc) · 3.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
import os
from setuptools import setup
from setuptools_rust import Binding, RustExtension
# If RUST_DEBUG is set, force compiling in debug mode. Else, use the default behavior of whether
# it's an editable installation.
rustworkx_debug = True if os.getenv("RUSTWORKX_DEBUG") == "1" else None
def readme():
with open("README.md") as f:
return f.read()
mpl_extras = ["matplotlib>=3.0"]
graphviz_extras = ["pillow>=5.4"]
PKG_NAME = os.getenv("RUSTWORKX_PKG_NAME", "rustworkx")
PKG_VERSION = "0.16.0"
PKG_PACKAGES = ["rustworkx", "rustworkx.visualization"]
PKG_INSTALL_REQUIRES = ["numpy>=1.16.0,<3"]
RUST_EXTENSIONS = [RustExtension("rustworkx.rustworkx", "Cargo.toml",
binding=Binding.PyO3, debug=rustworkx_debug)]
RUST_OPTS ={"bdist_wheel": {"py_limited_api": "cp39"}}
retworkx_readme_compat = """# retworkx
retworkx is the **deprecated** package name for `rustworkx`. If you're using
the `retworkx` package (either as a requirement or an import) this should
be updated to use rustworkx instead. In the future only the `rustworkx` name
will be supported.
"""
README = readme()
if PKG_NAME == "retworkx":
README = retworkx_readme_compat + README
PKG_PACKAGES = ["retworkx"]
# TODO: For final retworkx release change this to < 1.
PKG_INSTALL_REQUIRES.append(f"rustworkx=={PKG_VERSION}")
RUST_EXTENSIONS = []
setup(
name=PKG_NAME,
version=PKG_VERSION,
description="A python graph library implemented in Rust",
long_description=README,
long_description_content_type="text/markdown",
author="Matthew Treinish",
author_email="mtreinish@kortar.org",
license="Apache 2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Rust",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
keywords="Networks network graph Graph Theory DAG",
url="https://github.com/Qiskit/rustworkx",
project_urls={
"Bug Tracker": "https://github.com/Qiskit/rustworkx/issues",
"Source Code": "https://github.com/Qiskit/rustworkx",
"Documentation": "https://www.rustworkx.org/",
},
rust_extensions=RUST_EXTENSIONS,
include_package_data=True,
packages=PKG_PACKAGES,
zip_safe=False,
python_requires=">=3.9",
install_requires=PKG_INSTALL_REQUIRES,
extras_require={
"mpl": mpl_extras,
"graphviz": graphviz_extras,
"all": mpl_extras + graphviz_extras,
},
options=RUST_OPTS,
)