-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 1.04 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
import setuptools
with open("README.md", "r", encoding="utf-8") as input_file:
long_description = ""
for line in input_file:
if (not line.startswith("The following figure")) and (
not line.startswith("![Dendrogram")
):
long_description += line
setuptools.setup(
name="scipy_cut_tree_balanced",
version="1.2",
author="Vicente Reyes",
author_email="[email protected]",
description="Python function that performs a balanced cut tree of a SciPy linkage matrix",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vreyespue/scipy_cut_tree_balanced",
download_url="https://github.com/vreyespue/scipy_cut_tree_balanced/archive/v_1_2.tar.gz",
packages=setuptools.find_packages(),
install_requires=["scipy", "numpy"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)