|
8 | 8 | # The full license is in the file LICENSE, distributed with this software. |
9 | 9 | # ----------------------------------------------------------------------------- |
10 | 10 |
|
11 | | -__version__ = "0.1.0-dev" |
| 11 | +__version__ = "0.0.1" |
12 | 12 |
|
13 | 13 | from setuptools import setup |
14 | 14 | from glob import glob |
15 | 15 |
|
16 | 16 |
|
17 | 17 | classes = """ |
18 | | - Development Status :: 4 - Beta |
| 18 | + Development Status :: 2 - Pre-Alpha |
19 | 19 | License :: OSI Approved :: BSD License |
20 | 20 | Topic :: Scientific/Engineering :: Bio-Informatics |
21 | 21 | Topic :: Software Development :: Libraries :: Application Frameworks |
22 | 22 | Topic :: Software Development :: Libraries :: Python Modules |
23 | 23 | Programming Language :: Python |
24 | 24 | Programming Language :: Python :: 2.7 |
25 | 25 | Programming Language :: Python :: Implementation :: CPython |
26 | | - Operating System :: OS Independent |
27 | 26 | Operating System :: POSIX :: Linux |
28 | 27 | Operating System :: MacOS :: MacOS X |
29 | 28 | """ |
30 | 29 |
|
31 | | -long_description = """Qiita is a databasing and UI effort for QIIME""" |
| 30 | +long_description = """Qiita: Spot Patterns""" |
32 | 31 |
|
33 | 32 | classifiers = [s.strip() for s in classes.split('\n') if s] |
34 | 33 |
|
35 | | -setup(name='qiita', |
| 34 | +setup(name='qiita-spots', |
36 | 35 | version=__version__, |
37 | 36 | long_description=long_description, |
38 | 37 | license="BSD", |
39 | | - description='Qiita', |
| 38 | + description='Qiita: Spot Patterns', |
40 | 39 | author="Qiita development team", |
41 | 40 | |
42 | | - url='http://biocore.github.io/qiita', |
| 41 | + url='https://github.com/biocore/qiita', |
43 | 42 | test_suite='nose.collector', |
44 | 43 | packages=['qiita_core', |
45 | 44 | 'qiita_db', |
46 | 45 | 'qiita_pet', |
47 | | - 'qiita_ware', |
| 46 | + 'qiita_pet/handlers', |
| 47 | + 'qiita_ware' |
48 | 48 | ], |
49 | 49 | package_data={'qiita_core': ['support_files/config_test.txt'], |
50 | 50 | 'qiita_db': ['support_files/*.sql', |
|
59 | 59 | 'support_files/test_data/job/2_test_folder/*', |
60 | 60 | 'support_files/test_data/uploads/1/*', |
61 | 61 | 'support_files/test_data/templates/*', |
62 | | - 'support_files/work_data/*']}, |
| 62 | + 'support_files/work_data/*'], |
| 63 | + 'qiita_pet': ['static/css/*.css', 'static/img/*.png', |
| 64 | + 'static/img/*.gif', 'static/img/*.ico', |
| 65 | + 'static/js/*.js', 'static/vendor/css/*.css', |
| 66 | + 'static/vendor/css/images/*.png', |
| 67 | + 'static/vendor/fonts/glyphicons*.*', |
| 68 | + 'static/vendor/images/*.png', |
| 69 | + 'static/vendor/js/*.js', |
| 70 | + 'results/admin/jobname/*.html', |
| 71 | + 'templates/*.html']}, |
63 | 72 | scripts=glob('scripts/*'), |
64 | 73 | extras_require={'test': ["nose >= 0.10.1", "pep8", 'mock'], |
65 | 74 | 'doc': ["Sphinx >= 1.2.2", "sphinx-bootstrap-theme"]}, |
|
0 commit comments