-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (51 loc) · 1.47 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
# -*- coding: utf8 -*-
from setuptools import setup
from setuptools import find_packages
setup(
name='duende',
version='0.0.12',
author='Jerónimo José Albi',
author_email='[email protected]',
description='Duende web framework',
long_description='',
url='https://github.com/jeronimoalbi/duende',
keywords='web wsgi framework sqlalchemy formencode jinja2 templates',
license='BSD',
scripts=[
'scripts/duende-export.py',
],
install_requires=[
'simplejson',
'Paste>=1.7',
'PasteDeploy>=1.5',
'PasteScript>=1.7',
'WebOb',
'Beaker',
'Jinja2',
'Babel',
'SQLAlchemy>=0.7',
'FormEncode',
],
zip_safe=False,
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Framework :: Paste",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={
'console_scripts': [
"duende_shell = duende.lib.command:shell",
],
'paste.paster_create_template': [
"duende = duende.lib.pastetemplate:DuendeProjectTemplate",
]
},
)