-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·73 lines (67 loc) · 1.99 KB
/
setup.py
File metadata and controls
executable file
·73 lines (67 loc) · 1.99 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import division, print_function, unicode_literals
import sys
import setup_helper
from setuptools import find_packages, setup
version = '1.0.0.dev3'
cmdclass = setup_helper.version_checker(version, 'phasor')
extra_install_requires = []
if sys.version_info < (3, 0):
extra_install_requires.append('future')
setup(
name='phasor',
version=version,
url='',
author='Lee McCuller',
author_email='Lee.McCuller@gmail.com',
description=(
'Scientific modeling of linearized optics, electronics, mechanics, and signal flow in the frequency domain'
),
license='Apache v2',
packages=find_packages(exclude=['doc']),
#include_package_data=True,
#scripts=[''],
#entry_points={'console_scripts': ['',]},
setup_requires = [
'pytest-runner'
],
install_requires = [
'pint',
'numpy',
'scipy',
'matplotlib',
'IPython',
'pyyaml',
'declarative',
#'scikit-umfpack',
'casadi',
] + extra_install_requires,
tests_require = [
'pytest',
'pytest-runner',
'pytest-benchmark',
],
extras_require = {
"fitting" : ["casadi"],
"test" : ["pytest"],
"matrix": ['scikit-umfpack'],
},
cmdclass = cmdclass,
zip_safe = False,
keywords = 'Controls Linear Physics',
classifiers=[
'Development Status :: 3 - Alpha ',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Physics',
],
)