-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
59 lines (52 loc) · 1.63 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
#!/usr/bin/env python
"""Python system id.
Includes subspace methods currently.
"""
DOCLINES = __doc__.split("\n")
import os
import sys
from setuptools import setup, find_packages
import versioneer
CLASSIFIERS = """\
Development Status :: 1 - Planning
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Other
Topic :: Software Development
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
setup(
name='sysid',
maintainer="James Goppert",
maintainer_email="james.goppert@gmail.com",
description=DOCLINES[0],
long_description="\n".join(DOCLINES[2:]),
url='https://github.com/jgoppert/sysid',
author='James Goppert',
author_email='james.goppert@gmail.com',
download_url='https://github.com/jgoppert/sysid',
license='BSD',
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
install_requires=['scipy', 'numpy'],
tests_require=['nose'],
test_suite='nose.collector',
#entry_points = {
#'console_scripts': ['test=sysid.test:main'],
#},
packages=find_packages(
# choosing to distribute tests
# exclude=['*.test*']
),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)