forked from Circuitscape/Circuitscape.py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
21 lines (19 loc) · 786 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
from circuitscape import __version__, __author__, __email__
setup(
name = 'Circuitscape',
version = __version__,
author = __author__,
author_email = __email__,
packages = ['circuitscape', 'circuitscape.verify'],
scripts = ['bin/csrun.py','bin/csgui.py','bin/csverify.py'],
url = 'http://www.circuitscape.org/',
license = 'LICENSE.txt',
description = 'Circuitscape borrows algorithms from electronic circuit theory to predict patterns of movement, gene flow, and genetic differentiation among plant and animal populations in heterogeneous landscapes.',
long_description = open('README.txt').read(),
install_requires=[
'numpy >= 1.6.2',
'scipy >= 0.11.0',
'pyamg >= 2.1.0',
],
)