-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.18 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
30
31
32
33
34
35
36
37
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="apscale_blast", # Replace with your own username
version="1.0.3",
author="Till-Hendrik Macher",
author_email="[email protected]",
description="Advanced Pipeline for Simple yet Comprehensive AnaLysEs of DNA metabarcoding data - BLAST application",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://pypi.org/project/apscale_blast/",
packages=setuptools.find_packages(),
license='MIT',
install_requires=[
'Bio >= 1.7.1',
'biopython >= 1.84',
'joblib >= 1.4.2',
'numpy',
'pandas >= 2.2.2',
'pyarrow >= 16.1.0',
],
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": [
"apscale_blast = apscale_blast.__main__:main",
]
},
)