-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.23 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.23 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md") as readme:
long_description = readme.read()
setup(name = "cagecleaner",
version = "1.4.5",
author="Lucas De Vrieze",
author_email="lucas.devrieze@kuleuven.be",
license = "MIT",
description = "Genomic redundancy removal tool for cblaster hit sets",
packages = find_packages(),
include_package_data = True,
package_data={'cagecleaner': ["*.sh"]},
long_description = long_description,
long_description_content_type = "text/markdown",
python_requires = ">=3.12.0",
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
entry_points = {"console_scripts": ['cagecleaner = cagecleaner.main:main']},
install_requires=[
"scipy <=1.14.1",
"biopython",
"cblaster >=1.3.20",
"pandas",
"entrez-direct",
"skder >=1.3.4",
"ncbi-datasets-cli",
"any2fasta"
],
)