-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (46 loc) · 1.21 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
45
46
47
48
49
50
51
52
import os
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
try:
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()
except:
README = ''
CHANGES = ''
tests_require = [
'nose',
'nose-cov',
'mock',
'webtest',
]
version = '0.2.1'
setup(
name='pyramid_genshi',
description='Genshi template bindings for the Pyramid web framework',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='bfg pyramid pylons genshi templates',
author='Fang-Pen Lin',
author_email='[email protected]',
url='https://github.com/fangpenlin/pyramid_genshi',
license='MIT',
version=version,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='tests',
install_requires=[
'Genshi',
'Pyramid>=1.3',
],
extras_require=dict(
tests=tests_require,
),
test_requires=tests_require,
)