-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.06 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
38
39
40
41
42
43
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
base_reqs = [
"openmdao == 3.15.0",
"ruamel.yaml >= 0.16",
"plasmapy >= 0.5.0",
"numpy >= 1.21.0",
]
docs_reqs = [
"docutils<0.17,>=0.15",
"nbclient<0.6,>=0.2",
"sphinx >= 4.4.0",
"jupyter-sphinx==0.3.2",
"Jinja2<3.1",
"sphinxcontrib-bibtex >= 2.3",
"jsonschema < 4",
"sphinx_rtd_theme",
]
setuptools.setup(
name="faroes",
version="0.0.1",
author="Jacob Schwartz",
author_email="[email protected]",
description="Analyze tokamak designs for techno-economic analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cfe316/FAROES",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=base_reqs,
extras_require={
"docs": docs_reqs
},
)