-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1.12 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
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / ".pip_readme.rst").read_text()
requirements = (
(this_directory / "requirements" / "requirements-core.txt").read_text().split("\n")
)
setup(
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
],
name="s2wav",
version="1.0.4",
url="https://github.com/astro-informatics/s2wav",
author="Authors & Contributors",
license="GNU General Public License v3 (GPLv3)",
python_requires=">=3.8",
install_requires=requirements,
description=("Differentiable and accelerated wavelet transforms with JAX"),
long_description_content_type="text/x-rst",
long_description=long_description,
packages=find_packages(),
include_package_data=True,
pacakge_data={"s2wav": ["default-logging-config.yaml"]},
)