apscale-blast 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.1
2
+ Name: apscale_blast
3
+ Version: 0.1.1
4
+ Summary: Advanced Pipeline for Simple yet Comprehensive AnaLysEs of DNA metabarcoding data - BLAST application
5
+ Home-page: https://github.com/TillMacher/APSCALE_blast
6
+ Author: Till-Hendrik Macher
7
+ Author-email: macher@uni-trier.de
8
+ License: MIT
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: Bio>=1.7.1
15
+ Requires-Dist: biopython>=1.84
16
+ Requires-Dist: joblib>=1.4.2
17
+ Requires-Dist: numpy>=2.0.0
18
+ Requires-Dist: pandas>=2.2.2
19
+ Requires-Dist: pyarrow>=16.1.0
20
+
21
+ # APSCALE blast
22
+
@@ -0,0 +1,2 @@
1
+ # APSCALE blast
2
+
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.1
2
+ Name: apscale_blast
3
+ Version: 0.1.1
4
+ Summary: Advanced Pipeline for Simple yet Comprehensive AnaLysEs of DNA metabarcoding data - BLAST application
5
+ Home-page: https://github.com/TillMacher/APSCALE_blast
6
+ Author: Till-Hendrik Macher
7
+ Author-email: macher@uni-trier.de
8
+ License: MIT
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: Bio>=1.7.1
15
+ Requires-Dist: biopython>=1.84
16
+ Requires-Dist: joblib>=1.4.2
17
+ Requires-Dist: numpy>=2.0.0
18
+ Requires-Dist: pandas>=2.2.2
19
+ Requires-Dist: pyarrow>=16.1.0
20
+
21
+ # APSCALE blast
22
+
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ apscale_blast.egg-info/PKG-INFO
4
+ apscale_blast.egg-info/SOURCES.txt
5
+ apscale_blast.egg-info/dependency_links.txt
6
+ apscale_blast.egg-info/entry_points.txt
7
+ apscale_blast.egg-info/requires.txt
8
+ apscale_blast.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ apscale_blast = apscale_blast.__main__:main
@@ -0,0 +1,6 @@
1
+ Bio>=1.7.1
2
+ biopython>=1.84
3
+ joblib>=1.4.2
4
+ numpy>=2.0.0
5
+ pandas>=2.2.2
6
+ pyarrow>=16.1.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,38 @@
1
+ import setuptools
2
+
3
+ with open("README.md", "r") as fh:
4
+ long_description = fh.read()
5
+
6
+ setuptools.setup(
7
+ name="apscale_blast", # Replace with your own username
8
+ version="0.1.1",
9
+ author="Till-Hendrik Macher",
10
+ author_email="macher@uni-trier.de",
11
+ description="Advanced Pipeline for Simple yet Comprehensive AnaLysEs of DNA metabarcoding data - BLAST application",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/TillMacher/APSCALE_blast",
15
+ packages=setuptools.find_packages(),
16
+ license='MIT',
17
+ install_requires=[
18
+ 'Bio >= 1.7.1',
19
+ 'biopython >= 1.84',
20
+ 'joblib >= 1.4.2',
21
+ 'numpy >= 2.0.0',
22
+ 'pandas >= 2.2.2',
23
+ 'pyarrow >= 16.1.0',
24
+ ],
25
+ include_package_data=True,
26
+ classifiers=[
27
+ "Programming Language :: Python :: 3",
28
+ "License :: OSI Approved :: MIT License",
29
+ "Operating System :: OS Independent",
30
+ ],
31
+ python_requires='>=3.10',
32
+ entry_points={
33
+ "console_scripts": [
34
+ "apscale_blast = apscale_blast.__main__:main",
35
+ ]
36
+ },
37
+ )
38
+