-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (29 loc) · 1.08 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
import setuptools
from os import path
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setuptools.setup(
name="modelicapy",
version="0.3.1",
author="Scott Greenwood",
author_email="greenwoodms@ornl.gov",
description=("A Python library containing a variety of scripts and functions for interaction with Modelica and TRANSFORM"),
long_description=read('README.md'),
long_description_content_type='text/markdown',
license="Apache 2.0 License",
keywords="modelica dymola openmodelica mat",
url="https://github.com/ORNL-Modelica/ModelicaPy",
install_requires=['future'],
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
],
)