-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.07 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
from pathlib import Path
from skbuild import setup
cmake_args = ["-Dtests:BOOL=OFF"]
long_description = (
Path(__file__).parent / "src" / "main" / "pyflag" / ".FLAG_Python_Documentation.rst"
).read_text()
setup(
name="pyflag",
version="1.0.0",
author="Boris Leistedt & Jason McEwen & Matthew Price",
install_requires=["numpy", "cython", "scipy"],
extras_require={
"dev": [
"numpy"
"setuptools",
"wheel",
"scikit-build",
"cmake",
"ninja",
"cython",
"conan",
"black",
"pytest-black"
"pytest",
]
},
description="Fast Fourier-Laguerre transform on the ball",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/astro-informatics/src_flag",
package_dir={"pyflag": "src/main/pyflag"},
package_data={"pyflag": ["FLAG_Python_Documentation.rst"]},
cmake_args=cmake_args,
cmake_languages=("C",),
license="GPL-3",
packages=["pyflag"],
)