-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
61 lines (55 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
import os
from setuptools import find_packages
from setuptools import setup
project = 'kotti_settings'
version = '0.4dev'
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()
tests_require = [
'wsgi_intercept==0.5.1',
]
setup(
name=project,
version=version,
description="Settings configuration for Kotti",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Environment :: Web Environment",
"Framework :: Pylons",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: User Interfaces",
],
keywords='kotti ui settings cms pyramid pylons',
author='Marco Scheidhuber',
author_email='[email protected]',
url='https://github.com/j23d/kotti_settings',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require=[
tests_require,
],
install_requires=[
'Kotti>=0.9b2',
'deform_bootstrap'
],
extras_require={
'testing': tests_require,
},
message_extractors={
'kotti_settings': [
('**.py', 'lingua_python', None),
('**.zcml', 'lingua_xml', None),
('**.pt', 'lingua_xml', None),
]
},
)