-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.03 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'pyramid>=1.5.0',
'venusian'
]
setup(name='pyramid_extdirect',
version='0.6.1',
description='ExtDirect Implementation for Pyramid',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Framework :: Pylons",
"License :: Repoze Public License",
],
keywords='web wsgi javascript pyramid extdirect',
author="Igor Stroh",
author_email="igor.stroh@rulim.de",
url="http://github.com/jenner/pyramid_extdirect",
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require=requires,
test_suite="pyramid_extdirect",
install_requires=requires,
entry_points="""\
"""
)