forked from desy-ml/cheetah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (20 loc) · 796 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
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="cheetah-accelerator",
version="0.6.3",
author="Jan Kaiser & Chenran Xu",
author_email="jan.kaiser@desy.de",
url="https://github.com/desy-ml/cheetah",
description=(
"Fast and differentiable particle accelerator optics simulation for"
" reinforcement learning and optimisation applications."
),
long_description=long_description,
long_description_content_type="text/markdown",
packages=[package for package in find_packages() if package.startswith("cheetah")],
python_requires=">=3.9",
install_requires=["matplotlib", "numpy", "scipy", "torch"],
)