This repository has been archived by the owner on Dec 20, 2018. It is now read-only.
forked from ialbert/pyblue-central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.54 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
#! /usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
import os.path
import pyblue
setup(name='pyblue',
version=pyblue.VERSION,
description='PyBlue',
author='Istvan Albert',
author_email='[email protected]',
url='https://github.com/ialbert/pyblue',
packages = ['pyblue', 'pyblue.bio'],
scripts = ["pyblue/pyblue"],
include_package_data = True,
test_suite="tests",
data_files=[
('pyblue/templates/', [
'pyblue/templates/extensions.mako',
'pyblue/templates/base.mako',
]),
],
long_description=open("README.rst").read(),
keywords="",
license="MIT",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=[
"bottle >= 0.11.6",
"mako >= 0.8.0",
"argparse",
"markdown",
"waitress",
"docutils",
"python-magic",
],
)