-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (35 loc) · 950 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
35
36
37
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8'
]
setup(
name='eureca-ubem',
version='0.2.0',
author='betalab group UNIPD',
author_email='[email protected]',
packages=find_packages(),
scripts=[],
url='https://github.com/BETALAB-team/EUReCA',
license='LICENSE',
description='Package to simulate urban building energy performace with lumped capacitance models',
long_description=open('README.md').read(),
install_requires=[
"numpy",
"pandas",
"pyclipper",
"scipy",
"openpyxl",
"requests",
"pyarrow",
"xlrd",
"pvlib",
"shapely",
"geopandas",
"cjio",
"pyogrio",
],
)