-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
35 lines (32 loc) · 1.14 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
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="SimulatorToFMU",
version="1.0.0rc15",
author="Thierry S. Nouidui",
author_email="TSNouidui@lbl.gov",
description=("Package for exporting a Simulator as a Functional Mock-up Unit"),
long_description=read('README.rst'),
license="3-clause BSD",
url="https://github.com/LBNL-ETA/SimulatorToFMU/",
install_requires=['lxml',
'jinja2'],
packages=['simulatortofmu'],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
]
)