-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.18 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.18 KB
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
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.8",
"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="s2ball",
version="0.0.1",
url="https://github.com/astro-informatics/s2ball",
author="Matthew A. Price, Jason D. McEwen & Contributors",
license="MIT",
python_requires=">=3.8",
install_requires=requirements,
description=(
"Lightning fast but memory inefficient JAX transforms on the sphere, rotation group, and ball."
),
long_description_content_type="text/x-rst",
long_description=long_description,
packages=find_packages(),
include_package_data=True,
pacakge_data={"s2ball"},
)