-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (43 loc) · 1.23 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
from setuptools import setup
with open("README.md") as fh:
long_description = fh.read()
setup(
name="tspyro",
author="Anthony Wilder Wohns, Fritz Obermeyer, Eli Bingham, Yan Wong",
author_email="[email protected]",
description="Infer geography and time in a tree sequence",
long_description=long_description,
packages=["tspyro"],
long_description_content_type="text/markdown",
python_requires=">=3.6",
setup_requires=["setuptools_scm"],
install_requires=[
"networkx",
"numpy",
"pandas",
"pyro-ppl>=1.7",
"python-louvain",
"torch-scatter", # from https://data.pyg.org/whl/torch-1.11.0+cpu.htm
"tsdate",
"tskit",
],
extras_require={
"test": [
"black",
"flake8",
"mypy>=0.812",
"pyslim",
"pytest",
],
},
project_urls={
"Source": "https://github.com/awohns/tspyro",
"Bug Reports": "https://github.com/awohns/tspyro/issues",
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
],
use_scm_version={"write_to": "tspyro/_version.py"},
)