-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
61 lines (54 loc) · 1.95 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
""" file: setup.py (pydym)
author: Jess Robertson
CSIRO Earth Science and Resource Engineering
email: [email protected]
date: Wednesday 1 May,
2013
description: Distutils installer script for cWavelets.
"""
from setuptools import setup, find_packages
# Get requirements from requirements.txt file
with open('requirements.txt') as fhandle:
REQUIREMENTS = [l.strip('\n') for l in fhandle]
# Get version number from _version.py
# Can be updated using python setup.py update_version
from update_version import update_version, Version, get_version
update_version()
## PACKAGE INFORMATION
setup(
# Metadata
name='pydym',
version=get_version(),
description='Sparse and regular dynamic mode decomposition (DMD) of observations of physical systems',
author='Jess Robertson',
author_email='[email protected]',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
# Requirements
install_requires=REQUIREMENTS,
# Contents
packages=find_packages(exclude=['tests', 'docs']),
test_suite='tests',
ext_modules=[],
cmdclass={
'update_version': Version,
}
)