-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
55 lines (46 loc) · 1.39 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
__doc__ = """
=====================
Plugs Introduction
=====================
:Author: Limodou <[email protected]>
.. contents::
About Plugs
----------------
Plugs is an apps collection project for uliweb. So you can use any app of it
to compose your project.
License
------------
Plugs is released under BSD license. Of cause if there are some third party
apps not written by me(limodou), it'll under the license of itself.
"""
from uliweb.utils.setup import setup
import plugs
setup(name='plugs',
version=plugs.__version__,
description="Apps collection for uliweb",
long_description=__doc__,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
packages = ['plugs'],
platforms = 'any',
keywords='wsgi web framework',
author=plugs.__author__,
author_email=plugs.__author_email__,
url=plugs.__url__,
license=plugs.__license__,
include_package_data=True,
zip_safe=False,
entry_points = {
'uliweb_apps': [
'helpers = plugs',
],
},
)