-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
46 lines (42 loc) · 1.49 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
import os
from setuptools import find_packages
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()
AUTHORS = open(os.path.join(here, 'AUTHORS.rst')).read()
install_requires = [
'httplib2',
'Kotti >= 0.10b1',
'kotti_settings',
]
setup(name='kotti_contactform',
version='0.6dev',
description="Simple contact form for Kotti sites",
long_description=README + '\n\n' + AUTHORS + '\n\n' + CHANGES,
keywords='kotti contact form',
maintainer='Kotti developers',
maintainer_email='[email protected]',
url='https://github.com/Kotti/kotti_contactform',
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: BSD License",
],
author='Kotti developers',
author_email='[email protected]',
license='BSD-2-Clause',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={},
message_extractors={"kotti_contactform": [
("**.py", "lingua_python", None),
("**.pt", "lingua_xml", None),
]},
)