-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (24 loc) · 922 Bytes
/
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
from setuptools import find_packages, setup
from simplepso import __version__
with open('README.md') as f:
readme = f.read()
setup(
name='simplepso',
packages=find_packages(exclude=['examples', 'docs'],),
version=__version__,
description='Simple usage particle swarm optimization',
author='James C. Pino',
author_email='james.ch.pino@gmail.com',
url='https://github.com/LoLab-VU/simplePSO',
keywords=['optimization',
'systems biology'],
classifiers=['License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'],
include_package_data=True,
install_requires=['matplotlib >= 1.5.0',
'numpy >= 1.11.0',
'scipy >= 0.17.1',
'pysb >= 1.1.1'],
)