-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.25 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
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='autostreamtree',
version=__version__,
packages=find_packages(),
entry_points={
'console_scripts': [
'autostreamtree=autostreamtree.cli:main',
'networkDimensions=autostreamtree_scripts.networkDimensions:main',
'streeToDendrogram=autostreamtree_scripts.streeToDendrogram:main',
],
},
install_requires=[
"numpy",
"pandas>=2.0",
"networkx>=3.0",
"seaborn",
"matplotlib",
"geopandas",
"pyogrio",
"momepy",
"scipy",
"scikit-learn",
"mantel",
"pysam",
"sortedcontainers"
],
extras_require={
'dev': ['pytest']
},
package_data={
'autostreamtree': ['data/*'],
},
include_package_data=True,
author='Tyler Chafin',
author_email='[email protected]',
description='A package for fitting genetic distances to spatial networks',
keywords='population genetics, genetic distance, river networks',
url='https://github.com/tkchafin/autostreamtree',
)