-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (37 loc) · 1.31 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
from setuptools import setup
setup(
name="tsconvert",
description="Tree sequence conversion utilities",
long_description="Convert various file formats to and from tskit tree sequences",
url="https://github.com/tskit-dev/tsconvert",
author="Tskit Developers",
python_requires=">=3.7",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="tree sequence, newick, nexus",
packages=["tsconvert"],
include_package_data=True,
install_requires=["tskit", "dendropy"],
entry_points={
"console_scripts": [
"tsconvert=tsconvert.__main__:main",
],
},
project_urls={
"Bug Reports": "https://github.com/tskit-dev/tsconvert/issues",
"Source": "https://github.com/tskit-dev/tsconvert",
},
license="MIT",
platforms=["POSIX", "MacOS X"],
setup_requires=["setuptools_scm"],
use_scm_version={"write_to": "tsconvert/_version.py"},
)