-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
55 lines (51 loc) · 1.68 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
#! /usr/bin/python
from setuptools import setup
import os.path, sys
import pyblue
import glob
setup(
name='pyblue',
version=pyblue.VERSION,
description='PyBlue',
author='Istvan Albert',
author_email='[email protected]',
url='https://github.com/ialbert/pyblue',
packages=['pyblue'],
scripts=["pyblue/pyblue"],
include_package_data=True,
test_suite="tests",
data_files=[
('pyblue/templates/', glob.glob('pyblue/templates/*.html')),
],
long_description=open("README.rst").read(),
keywords="",
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'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.7',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=[
"django==1.11.23",
"bottle",
"commonmark==0.9.1",
"markdown-it-py[plugins]",
"waitress==1.4.3",
"bleach==3.3.0",
"bs4"
],
)