-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (35 loc) · 902 Bytes
/
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
from pathlib import Path
from skbuild import setup
cmake_args = [
"-DBUILD_TESTING:BOOL=OFF",
"-Dconan_deps=ON",
"-DCMAKE_POSITION_INDEPENDENT_CODE=ON",
]
setup(
name="so3",
version="1.3.6",
author="Jason McEwen",
install_requires=["numpy", "scipy"],
extras_require={
"dev": [
"setuptools",
"wheel",
"scikit-build",
"cmake",
"ninja",
"cython",
"conan",
"black",
"pytest",
]
},
description="Fast and exact Wigner Transforms",
url="http://astro-informatics.github.io/so3/",
package_dir={"so3": "src/so3"},
cmake_args=cmake_args,
cmake_languages=("C",),
license="GPL-3",
packages=["so3"],
long_description=Path(__file__).with_name("README.md").read_text(),
long_description_content_type="text/markdown",
)