-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 1005 Bytes
/
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
from pathlib import Path
from setuptools import setup
setup_py_file = Path(__file__).resolve()
repo_root = setup_py_file.parent
requirements_path = repo_root / 'requirements.txt'
requirements_contents = requirements_path.read_text().split('# OPTIONAL #')[0]
requirements = requirements_contents.strip().splitlines()
setup(
name='GLHE',
version='0.1',
author="Matt Mitchell",
author_email="[email protected]",
packages=[
'glhe',
'glhe.aggregation',
'glhe.g_function',
'glhe.ground_temps',
'glhe.input_processor',
'glhe.interface',
'glhe.output_processor',
'glhe.profiles',
'glhe.properties',
'glhe.standalone',
'glhe.topology',
'glhe.utilities',
],
license='MIT',
install_requires=requirements,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
entry_points={'console_scripts': ['glhe=glhe.standalone.plant_loop:main',]}
)