forked from lenstronomy/JAXtronomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 828 Bytes
/
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
from setuptools import setup, find_packages
requires = [
"lenstronomy>=1.11.0",
"numpy>=1.17.0",
"scipy>=0.19.1",
"jax>=0.4.12",
"jaxlib>=0.4.12",
]
tests_require = ["pytest"]
setup(
name="jaxtronomy",
version="0.0.1rc1",
url="https://github.com/lenstronomy/JAXtronomy",
author="lenstronomy developers",
description="lenstronomy, but in JAX",
packages=find_packages(),
license="BSD-3",
install_requires=requires,
tests_require=tests_require,
keywords="lenstronomy",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
],
)