-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1 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
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Cherryize setup script
from setuptools import setup, find_packages
long_description = """Cherryize is simple wrapper around the CherryPy WSGI server.
It can be used to run WSGI compatible applications such as Django, Pylons etc... """
setup(
name='Cherryize',
version=0.1,
description='Cherryize - CherryPy WSGI Server wrapper',
long_description=long_description,
author='Nick Snell',
author_email='nick@orpo.co.uk',
url='http://orpo.co.uk/code/',
download_url='',
license='BSD',
platforms=['All',],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe=True,
packages=find_packages(exclude=['tests',]),
dependency_links = [
],
entry_points = {
'console_scripts': [
'cherryize = cherryize.server:main',
]
},
install_requires=[
'pyyaml>=3.09'
]
)