-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (36 loc) · 1.19 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
import re
import ast
from glob import glob
from setuptools import find_packages, setup
classes = """
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('Downloading 16S data from SRA using Deblur')
long_description = description
version = '0.0.1'
setup(name='GetData',
version=version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author="Amnon",
author_email="[email protected]",
maintainer="Amnon",
maintainer_email="[email protected]",
packages=find_packages(),
scripts=glob('*.py'),
install_requires=[],
classifiers=classifiers,
url="https://github.com/amnona/GetData",
zip_safe=False)