-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (63 loc) · 2.09 KB
/
setup.py
File metadata and controls
71 lines (63 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python3
# Copyright (C) 2018 Jasper Boom
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License version 3 as
# published by the Free Software Foundation.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
Imports:
"""
import setuptools
"""
Readme:
"""
with open("README.md", "r") as readme:
description = readme.read()
"""
Setup:
"""
setuptools.setup(
name="caltha",
version="0.7",
description="A python package to process UMI tagged mixed amplicon\
metabarcoding data.",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/JasperBoom/caltha",
author="Jasper Boom",
author_email="jboom@infernum.nl",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="UMI Metabarcoding Amplicon",
packages=setuptools.find_packages(),
python_requires=">=3.8",
install_requires=[
"biopython>=1.78",
"jellyfish>=0.8.2",
"numpy>=1.19.2",
"pandas>=1.1.3",
"pyfastx>=0.7.0",
"sre-yield>=1.2",
],
project_urls={
"Source": "https://github.com/JasperBoom/caltha/tree/master/src",
"Tracker": "https://github.com/JasperBoom/caltha/issues",
"Documentation": "https://jasperboom.github.io/caltha/",
},
scripts=["src/caltha"],
)
"""
Additional information:
This file can be used to update the Caltha PyPI package.
"""