forked from wsgicabal/wiseguy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.12 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
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['colander', 'deform', 'pyyaml', 'webob', 'Paste']
setup(name='wiseguy',
version='0.0',
description='Wiseguy WSGI deployment framework',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
],
keywords='web wsgi',
author="WSGI Cabal",
author_email="http://lists.repoze.org/listinfo/wsgi-cabal",
url="",
license="MIT",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require = requires,
install_requires = requires,
test_suite="wiseguy.tests",
entry_points = """\
[console_scripts]
wiseguy = wiseguy.scripts.command:main
[wiseguy.component]
pipeline = wiseguy.component:PipelineComponent
gzip = wiseguy.component:GZipComponent
"""
)