-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (52 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
# --
# Copyright (c) 2008-2017 Net-ng.
# All rights reserved.
#
# This software is licensed under the BSD License, as described in
# the file LICENSE.txt, which you should have received as part of
# this distribution.
# --
from setuptools import setup, find_packages
VERSION = '0.3.1'
setup(
name='nagare.examples',
version=VERSION,
author='Alain Poirier',
author_email='[email protected]',
description='Demo and examples for the Nagare web framework',
long_description='''Read the `installation document <http://www.nagare.org/doc/demo_installation>`_
to do a standard installation or a developer installation with the
latest development version from the `github repository <https://github.com/nagareproject/examples>`_.
'''.replace('\n', ''),
license='BSD',
keywords='web wsgi framework sqlalchemy elixir seaside continuation ajax stackless',
url='http://www.nagare.org',
download_url='http://www.nagare.org/download',
packages=find_packages(),
include_package_data=True,
package_data={'': ['*.cfg']},
zip_safe=False,
install_requires=('nagare[database,doc]>=0.5.0', 'Pillow'),
namespace_packages=('nagare', 'nagare.examples',),
entry_points='''
[nagare.applications]
demo = nagare.examples.demo:app
wiki = nagare.examples.wiki.wiki9:app
gallery = nagare.examples.gallery.gallery7:app
portal = nagare.examples.portal.portal:app
jewels = nagare.examples.jewels:app
chat = nagare.examples.chat:app
''',
classifiers=(
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Environment :: Web Environment',
'Operating System :: Microsoft :: Windows :: Windows NT/2000',
'Operating System :: Unix',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
)
)