-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (27 loc) · 988 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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "DyMat",
version = "0.7",
author = "Joerg Raedler",
author_email = "joerg@j-raedler.de",
description = ("a package for reading and processing the result files of Dymola and OpenModelica"),
license = "BSD",
keywords = "modelica dymola openmodelica mat",
url = "http://www.j-raedler.de/projects/DyMat/",
download_url = "https://github.com/jraedler/DyMat/",
packages = ['DyMat', 'DyMat.Export'],
scripts = ['scripts/DyMatExport.py'],
long_description = read('README.txt'),
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
],
)