-
Notifications
You must be signed in to change notification settings - Fork 120
/
setup.py
47 lines (44 loc) · 1.77 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
import os
from setuptools import setup
version_py = os.path.join(os.path.dirname(__file__), 'gemini', 'version.py')
version = open(version_py).read().strip().split('=')[-1].replace('"', '').strip()
long_description = """
``gemini`` is a database framework for exploring genetic variation'
"""
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines() if not
x.startswith(("gemini", "http", "git"))]
setup(
name="gemini",
version=version,
install_requires=install_requires,
requires=['python (>=2.5, <3.0)'],
packages=['gemini',
'gemini.scripts',
'gemini.tests',
'gemini.data'],
author="Aaron Quinlan and Uma Paila",
description='A database framework for exploring genetic variation',
long_description=long_description,
url="http://gemini.readthedocs.org",
package_dir={'gemini': "gemini"},
package_data={'gemini': [
'static/css/gemini.css',
'static/img/gemini.png',
'static/third_party/bootstrap/css/*',
'static/third_party/bootstrap/img/*',
'static/third_party/bootstrap/js/*',
'static/third_party/jquery/jquery-1.7.1.js',
'static/third_party/jquery-ui/jquery-ui.min.js',
'views/*'
]},
zip_safe=False,
include_package_data=True,
scripts=['gemini/scripts/gemini'],
author_email="[email protected]",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Scientific/Engineering :: Bio-Informatics']
)