-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1.18 KB
/
setup.py
File metadata and controls
37 lines (31 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
"""Setup/build/install script for STELLADB."""
import os
import versioneer
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r") 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="stelladb",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=(
"Includes functions to upload DESC and VMEC data to the "
+ "stellarator database."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PlasmaControl/Stellarator-Database/",
author="Yigit Gunsur Elmacioglu, Rory Conlin, Dario Panici, Egemen Kolemen",
author_email="PlasmaControl@princeton.edu",
license="MIT",
keywords="stellarator tokamak equilibrium mhd "
+ "magnetohydrodynamics stability confinement plasma physics "
+ "optimization design fusion data database",
packages=find_packages(exclude=["tutorials"]),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.10",
)