forked from emmett-framework/emmett
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (59 loc) · 1.78 KB
/
setup.py
File metadata and controls
67 lines (59 loc) · 1.78 KB
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
"""
weppy is a full-stack python web framework designed with simplicity in mind.
Links
-----
* `website <http://weppy.org>`_
* `documentation <http://weppy.org/docs>`_
* `git repo <http://github.com/gi0baro/weppy>`_
"""
import re
import ast
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('weppy/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='weppy',
version=version,
url='http://github.com/gi0baro/weppy/',
license='BSD',
author='Giovanni Barillari',
author_email='gi0baro@d4net.org',
description='The web framework for humans',
long_description=__doc__,
packages=[
'weppy',
'weppy.language', 'weppy.language.plurals',
'weppy.orm', 'weppy.orm.migrations',
'weppy.templating',
'weppy.testing',
'weppy.tools', 'weppy.tools.auth',
'weppy.validators',
'weppy.libs'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'click>=0.6',
'pendulum>=1.0.0',
'pyaes',
'pyDAL==17.3',
'pyyaml'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points={
'console_scripts': ['weppy = weppy.cli:main']
},
)