forked from pywebio/PyWebIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (55 loc) · 1.92 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
55
56
from setuptools import setup, find_packages
from pywebio import version
setup(
name='PyWebIO',
version=version,
description=u'Make your python interactive script be a web service.',
url='https://github.com/wang0618/pywebio',
author='WangWeimin',
author_email='wang0.618@qq.com',
license='MIT',
packages=find_packages(),
package_data={
# data files need to be listed both here (which determines what gets
# installed) and in MANIFEST.in (which determines what gets included
# in the sdist tarball)
"pywebio": [
"html/codemirror/darcula.css",
"html/codemirror/active-line.js",
"html/codemirror/matchbrackets.js",
"html/codemirror/loadmode.js",
"html/codemirror/python.js",
"html/css/bootstrap.min.css",
"html/css/mditor.min.css",
"html/css/jquery.toast.min.css",
"html/css/mditor.min.css.map",
"html/css/app.css",
"html/css/codemirror.css",
"html/js/FileSaver.min.js",
"html/js/mditor.min.js",
"html/js/.DS_Store",
"html/js/codemirror.js",
"html/js/pywebio.js",
"html/js/mustache.min.js",
"html/js/jquery.min.js",
"html/js/bootstrap.min.js",
"html/js/bs-custom-file-input.min.js",
"html/js/popper.min.js",
"html/js/jquery.toast.min.js",
"html/index_cdn.html",
"html/index.html",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
'tornado>=4.3.0', # After this version, the new async/await keywords in Python 3.5 are supported
],
extras_require={
'flask': ['flask'],
},
)