forked from lbl-srg/BuildingsPy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.46 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
import os
from setuptools import setup
# Python setup file.
# See http://packages.python.org/an_example_pypi_project/setuptools.html
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "buildingspy",
version = "1.4.0",
author = "Michael Wetter",
author_email = "[email protected]",
description = ("Package for simulating and testing models from the Modelica Buildings and Annex 60 libraries"),
long_description = read('buildingspy/README.rst'),
license = "3-clause BSD",
keywords = "modelica dymola openmodelica mat",
url = "http://simulationresearch.lbl.gov/modelica/",
install_requires = ["ModelicaRes", "pytidylib"],
packages = ['buildingspy',
'buildingspy/development',
'buildingspy/examples',
'buildingspy/io',
'buildingspy/simulate',
'buildingspy/thirdParty',
'buildingspy/thirdParty.dymat',
'buildingspy/thirdParty.dymat.DyMat',
'buildingspy/thirdParty.dymat.DyMat.Export'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
],
)