-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (37 loc) · 1.02 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
import os
from setuptools import setup, find_packages
directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(directory, 'version.py'), 'r') as f:
exec(f.read())
setup(
name='resistnet',
version=__version__,
# Specify where to find the packages
package_dir={'': 'src'},
packages=find_packages(where='src'),
scripts=[
'scripts/runResistnet.py',
'scripts/simResistnet.py',
'scripts/ensembleResistnet.py'
],
install_requires=[
"numpy",
"pandas",
"networkx",
"pytest",
"seaborn",
"matplotlib",
"pyogrio",
"momepy",
"geopy",
"hyperopt",
"deap",
"scipy"
],
include_package_data=True,
author='Tyler Chafin',
author_email='[email protected]',
description='A package for modelling environmental resistance networks',
keywords='population genetics, environmental resistance, river networks',
url='https://github.com/tkchafin/resistnet',
)