forked from WISDEM/ORBIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (50 loc) · 1.28 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
48
49
50
51
52
53
54
55
56
""""Distribution setup"""
import os
from setuptools import setup, find_packages
import versioneer
ROOT = os.path.abspath(os.path.dirname(__file__))
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="orbit-nrel",
author="Jake Nunemaker",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Offshore Renewables Balance of system and Installation Tool",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
package_data={"": ["*.yaml"]},
install_requires=[
"numpy",
"matplotlib",
"simpy",
"marmot-agents>=0.2.5",
"scipy",
"pandas",
"pyyaml",
"openmdao>=3.2",
"python-benedict",
"statsmodels",
],
extras_require={
"dev": [
"pre-commit",
"pylint",
"flake8",
"black",
"isort",
"pytest",
"pytest-cov",
"sphinx",
"sphinx-rtd-theme",
]
},
test_suite="pytest",
tests_require=["pytest", "pytest-cov"],
)