-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
79 lines (58 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
setup.py for fpage
https://github.com/fy0/fpage
"""
from setuptools import setup
def description():
return """FPage is a tornado classic project generator(cli)."""
def long_desc():
return """FPage is a tornado classic project generator(cli).
classic means the style before separation of front-end and backend beca me popular.
Quick start a project with tornado + mako/jinja2 + peewee/sqlalchemy。
Usage: fpage new
`more <https://github.com/fy0/fpage/blob/master/README_EN.md>`_ """
setup(
name='fpage',
version='1.2.1',
description=description(),
long_description=long_desc(),
url="https://github.com/fy0/fpage",
author='fy',
author_email='[email protected]',
license='WTFPL',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='tornado generator cli web framework sqlalchemy peewee',
platforms='any',
install_requires=[],
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4',
packages=['fpage'],
package_dir={
'fpage': '',
},
include_package_data=True,
extras_require={
'full': ['tornado', 'peewee', 'sqlalchemy', 'mako', 'jinja2'],
},
entry_points={
'console_scripts': [
'fpage=fpage.fpage:main',
],
},
)