-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (44 loc) · 1.52 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
import os
import numpy as np
from Cython.Distutils import build_ext
from setuptools import Extension, find_packages, setup
ext_modules = []
e = Extension(
"riip.formulas_cython",
sources=[os.path.join("src", "utils", "formulas_cython.pyx")],
depends=[],
include_dirs=[np.get_include(), "."],
language="c++",
)
e.cython_directives = {"language_level": "3"}
ext_modules.append(e)
setup(
name="riip",
version="0.7.0",
url="https://github.com/mnishida/RII_Pandas",
license="MIT",
author="Munehiro Nishida",
author_email="[email protected]",
description="Python 3 + Pandas wrapper for the refractiveindex.info database",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
package_data={"riip": ["py.typed", "data/riid.patch", "data/my_database"]},
setup_requires=["Cython", "numpy", "scipy"],
install_requires=[line.strip() for line in open("requirements.txt").readlines()],
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
ext_modules=ext_modules,
cmdclass={"build_ext": build_ext},
)