-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (53 loc) · 1.45 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (53 loc) · 1.45 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="taxontabletools2",
version="2.3.2",
author="Till-Hendrik Macher",
author_email="macher@uni-trier.de",
description="Taxontabletools2 - A comprehensive, platform-independent graphical user interface software to explore and visualise DNA metabarcoding data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://pypi.org/project/taxontabletools2",
packages=setuptools.find_packages(),
license = 'MIT',
install_requires=[
"streamlit",
"stqdm",
"pygbif",
"geopandas",
"scikit-learn",
"xlsxwriter",
"pycirclize",
"update_checker",
"pandas",
"numpy",
"plotly",
"matplotlib",
"matplotlib-venn",
"scipy",
"biom-format",
"statsmodels",
"openpyxl",
"psutil",
"pymannkendall",
"tqdm",
"natsort",
"kaleido",
"GitPython",
"watchdog",
],
include_package_data = True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
entry_points = {
"console_scripts" : [
"taxontabletools2 = taxontabletools2.__main__:main",
]
},
)