-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (31 loc) · 1.17 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
"""Setup/build/install script for ZERNIPAX."""
import os
import versioneer
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md") 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="zernipax",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=(
"Includes functions to generate Zernike modes and Calculate Zernike "
"polynomials and their derivatives using JAX."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PlasmaControl/FastZernike/",
author="Yigit Gunsur Elmacioglu, Rory Conlin, Egemen Kolemen",
author_email="[email protected]",
license="MIT",
keywords="zernike polynomials, optics, astrophysics, spectral "
+ "simulation, basis, orthogonal polynomials, parallel computing, "
+ "JAX",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.9",
)