-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.07 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.07 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
# -*- coding: utf-8 -*-
"""
weppy-REST
----------
Rest extension for weppy framework.
"""
from setuptools import setup
setup(
name='weppy-REST',
version='0.5-dev',
url='https://github.com/gi0baro/weppy-rest',
license='BSD',
author='Giovanni Barillari',
author_email='gi0baro@d4net.org',
description='REST extension for weppy framework',
long_description=__doc__,
packages=['weppy_rest'],
install_requires=[
'weppy>=1.0'
],
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'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',
'Topic :: Text Processing :: Markup :: HTML'
],
)