-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
27 lines (24 loc) · 883 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "rb") as fh:
long_description = fh.read().decode()
with open("requirements.txt") as fh:
requirements = fh.read().splitlines()
setup(
name="baltic",
version="0.3.0",
packages=find_packages(),
url="https://github.com/evogytis/baltic",
download_url="https://github.com/evogytis/baltic/archive/v0.3.0.tar.gz",
keywords = ['phylogeny', 'visualization'],
license="gpl-3.0",
author="Gytis Dudas",
description="Lightweight package for analyzing, manipulating and visualizing annotated phylogenetic trees",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
python_requires=">=3.5",
include_package_data=False,
zip_safe=False,
# classifiers=[],
)