forked from benjiec/giraffe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.41 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='giraffe',
version='2.0',
description='Sequence BLAST, feature detection, and visualization',
author='Benjie Chen',
author_email='[email protected]',
long_description=open('README.md', 'r').read(),
packages=["giraffe", "hippo", "hippo.migrations", "hippo.management", "hippo.management.commands"],
package_dir={"": "src"},
package_data = {"giraffe": ["static/giraffe/css/*.css",
"static/giraffe/css/jquery-ui/redmond/*.css",
"static/giraffe/js/*.js",
"static/giraffe/js/jquery/*.js",
"static/giraffe/js/jquery/jquery-ui-1.9.2.custom/js/*.js",
"static/giraffe/js/jquery/jquery-ui-1.9.2.custom/css/*/*.css",
"static/giraffe/js/jquery/jquery-ui-1.9.2.custom/css/*/*/*.png",
"templates/giraffe/*"],
"hippo": ["fixtures/*"],
},
zip_safe=False,
requires=[],
install_requires=[],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)