-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
64 lines (56 loc) · 2 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
import sys
from glob import glob
from pybind11 import get_cmake_dir
# Available at setup time due to pyproject.toml
from pybind11.setup_helpers import Pybind11Extension, build_ext
from setuptools import find_packages, setup
__version__ = "0.4.0"
# The main interface is through Pybind11Extension.
# * You can add cxx_std=11/14/17, and then build_ext can be removed.
# * You can set include_pybind11=false to add the include directory yourself,
# say from a submodule.
#
# Note:
# Sort input source files if you glob sources to ensure bit-for-bit
# reproducible builds (https://github.com/pybind/python_example/pull/53)
ext_modules = [
Pybind11Extension(
"_spyder",
sorted(glob("src/spyder/*.cc")),
# Example: passing in the version to the compiled code
define_macros=[("VERSION_INFO", __version__)],
),
]
long_description = open("README.md").read()
install_requires = ["click>=7.0.0", "tabulate>=0.8.9", "numpy>=1.18.1"]
tests_require = [
"pytest==7.1.3",
"pytest-forked==1.4.0",
"pytest-xdist==2.5.0",
"pytest-cov==4.0.0",
"flake8==5.0.4",
"coverage==6.5.0",
"black==22.3.0",
"isort==5.10.1",
"pre-commit>=2.17.0,<=2.19.0",
]
setup(
name="spy-der",
version=__version__,
author="Desh Raj",
author_email="[email protected]",
url="https://github.com/desh2608/spyder",
description="A simple Python package for fast DER computation",
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages("src"),
ext_modules=ext_modules,
# Currently, build_ext only provides an optional "highest supported C++
# level" feature, but in the future it may provide more features.
cmdclass={"build_ext": build_ext},
zip_safe=False,
install_requires=install_requires,
extras_require={"tests": tests_require, "all": install_requires + tests_require},
entry_points={"console_scripts": ["spyder=spyder.der:compute_der_from_rttm"]},
)