-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (38 loc) · 1.19 KB
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
#!/usr/bin/env python
from setuptools import 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'
setup(
name='GetData',
version='0.1.8',
description=description,
long_description=description,
long_description_content_type='text/markdown',
author='Amnon',
author_email='jamietmorton@gmail.com',
maintainer='Amnon',
maintainer_email='jamietmorton@gmail.com',
packages=['GetData'],
install_requires=['numpy'],
entry_points={
'console_scripts': [
'process-experiment=GetData.process_experiment:cli',
],
},
classifiers=classifiers,
url='https://github.com/amnona/GetData',
zip_safe=False,
python_requires='>=3.8',
)