-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (47 loc) · 1.97 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (47 loc) · 1.97 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""Setup/build/install script for interpax_fft."""
import os
import versioneer
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join(here, "requirements.txt"), encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="interpax_fft",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=("Fourier interpolation and function approximation with JAX"),
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/unalmis/interpax_fft",
author="Kaya Unalmis",
author_email="kunalmis@stanford.edu",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Typing :: Typed",
],
keywords="interpolation fourier approximation",
packages=find_packages(exclude=["docs", "tests", "local", "report"]),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.10",
project_urls={
"Issues Tracker": "https://github.com/unalmis/interpax_fft/issues",
"Contributing": "https://github.com/unalmis/interpax_fft/blob/main/.github/CONTRIBUTING.rst", # noqa: E501
"Source Code": "https://github.com/unalmis/interpax_fft/",
"Documentation": "https://unalmis.github.io/interpax_fft/",
},
)