-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (20 loc) · 947 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'pacmill',
version = '0.5.4',
description = 'The `pacmill` python package is a bioinformatics '
'pipeline that is developed to process microbial '
'16S amplicon sequencing data.',
license = 'MIT',
url = 'http://github.com/xapple/pacmill/',
author = 'Lucas Sinclair',
author_email = '[email protected]',
packages = find_packages(),
install_requires = ['plumbing>=2.9.4', 'autopaths>=1.4.6', 'fasta>=2.2.2',
'pymarktex>=1.4.6', 'seqsearch>=1.3.3', 'biopython',
'pandas', 'sh', 'tag', 'shell_command', 'tabulate',
'openpyxl'],
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
include_package_data = True,
)