-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
77 lines (73 loc) · 3.02 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from setuptools import setup, find_packages
from pkg_resources import parse_version
# import glob
import os
here = os.path.abspath(os.path.dirname(__file__))
import sys
if sys.version_info[:2] < (2, 6) or (3, 0) <= sys.version_info[0:2] < (3, 2):
raise RuntimeError("Python version 2.6, 2.7, or 3.2+ required.")
# Get the long description from the relevant file
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
# Get the version from the relevant file
with open(os.path.join(here, 'modred/_version.py')) as f:
exec(f.read())
# Get the development status from the version string
parsed_version = str(parse_version(__version__))
# Parse the version string, looking for the "beta" suffix first, otherwise
# looking for the letter "a" will find one at the end of "beta" and flag it as
# an alpha version
if any(suffix in parsed_version for suffix in ['b', 'beta']):
devstatus = 'Development Status :: 4 - Beta'
elif any(suffix in parsed_version for suffix in ['a', 'alpha']):
devstatus = 'Development Status :: 3 - Alpha'
else:
devstatus = 'Development Status :: 5 - Production/Stable'
# OKID_test_data_files = list()
# for c in ['SISO', 'SIMO', 'MISO', 'MIMO']:
# OKID_test_data_files.append((os.path.join('modred', 'tests', 'OKID_files' , c),
# glob.glob(os.path.join('modred', 'tests', 'OKID_files', c, '*'))))
setup(
name='modred',
version=__version__,
description=(
'Compute modal decompositions and reduced-order models, '
'easily, efficiently, and in parallel.'),
# long_description=long_description,
# keywords='',
author=('Brandt Belson, Jonathan Tu, and Clancy Rowley;'
'repacked and ported for Python 3 by Pierre Augier'),
#author_email='',
url='http://modred.readthedocs.io',
maintainer=('Brandt Belson, Jonathan Tu, and Clancy Rowley; '
'repacked & ported for Python3 by Pierre Augier'),
maintainer_email='[email protected]',
license='Free BSD',
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
devstatus,
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
packages=find_packages(exclude=['doc', 'matlab']),
package_dir={'modred': 'modred'},
package_data={'modred': [
'tests/files_OKID/SISO/*',
'tests/files_OKID/SIMO/*',
'tests/files_OKID/MISO/*',
'tests/files_OKID/MIMO/*']},
install_requires=['numpy', 'scipy']
)