This repository has been archived by the owner on Sep 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
60 lines (53 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# Copyright (c) 2013, The Qiita Development Team.
#
# Distributed under the terms of the BSD 3-clause License.
#
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------
from setuptools import setup
from glob import glob
__version__ = "0.0.2-dev"
classes = """
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
long_description = '''
The goal of this project is to produce an estimator for runtime and memory
consumption: (runtime, memory) = f(script_name, number_of_observations,
number_of_samples, sparsity). This estimator will be based off of empirical
results from standard test data sets (to be created, described below) and
validated with real world datasets.
'''
classifiers = [s.strip() for s in classes.split('\n') if s]
setup(name='qiime-scaling',
version=__version__,
long_description=long_description,
license="BSD",
description='qiime scaling',
author="Jose Antonio Navas Molina",
author_email="josenavasmolina@gmail.com",
url='https://github.com/qiime/QIIME-Scaling',
test_suite='nose.collector',
packages=['scaling',
'scaling/commands',
'scaling/interfaces',
'scaling/interfaces/optparse'
],
include_package_data=True,
package_data={
},
scripts=glob('scripts/*'),
extras_require={'test': ["nose >= 0.10.1"]},
install_requires=['pyqi', 'numpy'],
classifiers=classifiers
)