forked from emmett-framework/emmett
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.42 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
"""
weppy is a full-stack python framework that includes everything needed
to easily create fast, scalable and secure web applications.
It's based on web2py and inspired by Flask.
Links
-----
* `website <http://weppy.org>`_
* `documentation <http://weppy.org/docs>`_
* `git repo <http://github.com/gi0baro/weppy>`_
"""
from setuptools import setup
setup(
name='weppy',
version='0.1.7',
url='http://github.com/gi0baro/weppy/',
license='BSD',
author='Giovanni Barillari',
author_email='[email protected]',
description='The web framework for humans',
long_description=__doc__,
packages=['weppy', 'weppy.language', 'weppy.language.plurals',
'weppy.tools', 'weppy.libs'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'click>=0.6',
'pyaes',
'pyDAL',
'pyyaml'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points='''
[console_scripts]
weppy=weppy.cli:main
''',
)