-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (40 loc) · 1.07 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
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.install import install
class CustomInstall(install):
def run(self):
install.run(self)
print("\nIMPORTANT: Please run the 'submg download_webin' command.")
setup(
name='submg',
version='0.9.2',
packages=find_packages(),
install_requires=[
'pysam>=0.19.1',
'PyYAML>=5.4.1',
'Requests>=2.31.0',
'tqdm>=4.64.1',
'yaspin>=2.0',
],
scripts=[
'submg/main.py',
],
include_package_data=True,
package_data={
'submg': ['*.yaml','*.fa','*.fasta','*.fasta.fai','*.bam','*.bam.bai','*.tsv','*.txt']
},
entry_points={
'console_scripts': [
'submg=submg.main:main'
],
},
cmdclass={
'install': CustomInstall,
},
# Metadata
author='ttubb',
author_email='[email protected]',
description='A tool for submitting metagenome data to ENA',
keywords='Metagenome, MAG, ENA, Submission',
url='https://github.com/ttubb/submg',
)