-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 693 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name="cluster_mst",
version="0.1.0",
description="Panel web app for Minimum Spanning Tree clustering of HTS results.",
url="https://github.com/apahl/cluster_mst",
author="Axel Pahl",
author_email="",
license="MIT",
packages=["cluster_mst"],
install_requires=[
"holoviews",
"panel",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
],
)