forked from sdaudlin/BAG_framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.11 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='bag',
version='2.0',
description='Berkeley Analog Generator',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
author='Eric Chang',
author_email='[email protected]',
packages=find_packages(),
python_requires='>=3.5',
install_requires=[
'setuptools>=18.5',
'PyYAML>=3.11',
'Jinja2>=2.9',
'numpy>=1.10',
'networkx>=1.11',
'pexpect>=4.0',
'pyzmq>=15.2.0',
'scipy>=0.17',
'matplotlib>=1.5',
'rtree',
'h5py',
'Shapely',
],
extras_require={
'mdao': ['openmdao']
},
tests_require=[
'openmdao',
'pytest',
],
package_data={
'bag.interface': ['templates/*'],
'bag.verification': ['templates/*'],
},
)