-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
48 lines (40 loc) · 1.35 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
from setuptools import setup, find_packages
import versioneer
_install_requires = ["scipy>=0.16,<=1.11.0", "numba>=0.45"]
metadata = dict(
name="numba-scipy",
description="numba-scipy extends Numba to make it aware of SciPy",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Compilers",
],
package_data={},
scripts=[],
author="Anaconda, Inc.",
author_email="numba-users@continuum.io",
url="https://github.com/numba/numba-scipy",
download_url="https://github.com/numba/numba-scipy",
packages=find_packages(),
setup_requires=[],
install_requires=_install_requires,
entry_points={
"numba_extensions": [
"init = numba_scipy:_init_extension",
],
},
license="BSD",
zip_safe=False,
)
with open("README.rst") as f:
metadata["long_description"] = f.read()
setup(**metadata)