-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (41 loc) · 1.41 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
44
45
46
47
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "bird", "requirements.txt")) as f:
install_requires = f.readlines()
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
readme = f.read()
with open(os.path.join(here, "bird", "version.py"), encoding="utf-8") as f:
version = f.read()
version = version.split("=")[-1].strip().strip('"').strip("'")
setup(
name="nrel-bird",
version=version,
description="Bio Reactor Design (BiRD): a toolbox to simulate and analyze different designs of bioreactors in OpenFOAM",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/NREL/BioReactorDesign",
author="Malik Hassanaly",
license="BSD 3-Clause",
package_dir={"bird": "bird"},
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
package_data={
"": [
"*requirements.txt",
"*.json",
"*.yaml",
"*.csv",
"data_conditional_mean",
]
},
include_package_data=True,
python_requires=">=3.10",
install_requires=install_requires,
)