-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (33 loc) · 1.21 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
"""setup.py for mothur_py."""
from setuptools import setup, find_packages
# Get the long description from the README.md, converted to .rst if possible
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
print('using README.rst for long description')
except(IOError, ImportError):
long_description = open('README.md').read()
print('using README.md for long description')
setup(
name="mothur_py",
version="0.4.0",
description="Python wrapper for the bioinformatics tool mothur",
long_description=long_description,
url="https://github.com/campenr/mothur-py",
author="Richard Campen",
author_email="[email protected]",
license="Modified BSD License",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
keywords="mothur bioinformatics",
packages=find_packages(),
include_package_data=True
)