-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
45 lines (38 loc) · 1.28 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
import os
# this is a hack to prevent an ugly bug when
# setuptools performs sys.modules restoration
import multiprocessing
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.rst')).read()
changes = open(os.path.join(here, 'CHANGES.rst')).read()
requires=[
'pyramid>=1.3a6',
]
setup(
name='pyramid_rewrite',
version='0.2',
description='Small Pyramid extension for rewriting urls',
long_description=readme + '\n' + changes,
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Python Modules",
],
#packages=find_packages(),
packages=['pyramid_rewrite'],
install_requires=requires,
author='Benjamin Hepp',
author_email='[email protected]',
license='BSD',
url='https://github.com/bennihepp/pyramid_rewrite',
keywords='pyramid rewrite pylons web',
tests_require=requires,
test_suite='pyramid_rewrite',
)