-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.03 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
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=[
"tskit>=0.3.0",
"tsdate",
"flake8",
"mypy>=0.812",
"numpy",
"networkx",
"pyro-ppl>=1.7",
"pytest",
"pandas",
],
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"},
)