-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
113 lines (101 loc) · 4.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# -*- coding: utf-8 -*-
"""
setup.py
"""
import os
from codecs import open
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from subprocess import check_call
import shlex
from warnings import warn
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
readme = f.read()
with open(os.path.join(here, "reVX", "version.py"), encoding="utf-8") as f:
version = f.read()
version = version.split('=')[-1].strip().strip('"').strip("'")
class PostDevelopCommand(develop):
"""
Class to run post setup commands
"""
def run(self):
"""
Run method that tries to install pre-commit hooks
"""
try:
check_call(shlex.split("pre-commit install"))
except Exception as e:
warn("Unable to run 'pre-commit install': {}"
.format(e))
develop.run(self)
with open("requirements.txt") as f:
install_requires = f.readlines()
test_requires = ["pytest>=5.2", ]
description = ("National Renewable Energy Laboratory's (NREL's) Renewable "
"Energy Potential(V) eXchange Tool: reVX")
setup(
name="NREL-reVX",
version=version,
description=description,
long_description=readme,
author="Michael Rossol",
author_email="[email protected]",
url="https://nrel.github.io/reVX/",
packages=find_packages(),
package_dir={"reVX": "reVX"},
entry_points={
"console_scripts": ["reVX=reVX.cli:main",
"reV-rpm=reVX.rpm.rpm_cli:main",
"reV-plexos=reVX.plexos.rev_reeds_plexos_cli:main",
"plexos-plants=reVX.plexos.plexos_plants_cli:main",
"setbacks=reVX.setbacks.setbacks_cli:cli",
("prominent-wind-dirs=reVX.wind_dirs."
"prominent_wind_dirs_cli:main"),
("mean-wind-dirs=reVX.wind_dirs."
"mean_wind_dirs_cli:main"),
("offshore-dist-to-ports=reVX.offshore."
"dist_to_ports_cli:main"),
("offshore-assembly-areas=reVX.offshore."
"assembly_areas_cli:main"),
("offshore-inputs=reVX.offshore."
"offshore_inputs_cli:main"),
("turbine-flicker=reVX.turbine_flicker."
"turbine_flicker_cli:main"),
("simple-plant-builder=reVX.plexos."
"simple_plant_builder_cli:main"),
("dry-cost-creator=reVX.least_cost_xmission."
"dry_cost_creator_cli:main"),
("least-cost-xmission=reVX.least_cost_xmission."
"least_cost_xmission_cli:main"),
("least-cost-paths=reVX.least_cost_xmission."
"least_cost_paths_cli:main"),
("transmission-layer-creator=reVX."
"least_cost_xmission."
"transmission_layer_creator_cli:main"),
],
},
include_package_data=True,
package_data={'': ['**/*.json']},
license="BSD 3-Clause",
zip_safe=False,
keywords="reVX",
python_requires='>=3.8',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
test_suite="tests",
install_requires=install_requires,
extras_require={
"test": test_requires,
"dev": test_requires + ["flake8", "pre-commit", "pylint"],
},
cmdclass={"develop": PostDevelopCommand},
)