-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
55 lines (46 loc) · 1.4 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__ = """
=====================
Shapps Introduction
=====================
:Author: Chunlin Zhang <[email protected]>,Jiannan Tang <[email protected]>
.. contents::
About Shapps
----------------
Shapps is an apps collection project for uliweb. So you can use any app of it
to compose your project.
License
------------
Shapps is released under BSD license. Of cause if there are some third party
apps not written by this project's author, it'll under the license of itself.
"""
from setuptools import setup
import shapps
setup(name='shapps',
version=shapps.__version__,
description="Another 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 = ['shapps'],
platforms = 'any',
keywords='wsgi web framework',
author=shapps.__author__,
author_email=shapps.__author_email__,
url=shapps.__url__,
license=shapps.__license__,
include_package_data=True,
zip_safe=False,
entry_points = {
'uliweb_apps': [
'helpers = shapps',
],
},
)