-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (53 loc) · 1.64 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
import os
from setuptools import find_packages
from setuptools import setup
project = 'kotti_newsitem'
version = '0.2'
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()
setup(
name=project,
version=version,
description="News Item content type 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 content-type add-on',
author='Andreas Kaiser',
author_email='disko@binary-punks.com',
url='https://github.com/kotti/kotti_newsitem',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'Kotti',
],
extras_require={
'testing': ["coveralls"],
},
entry_points={
'fanstatic.libraries': [
'kotti_newsitem = kotti_newsitem.fanstatic:library',
],
},
message_extractors={
'kotti_newsitem': [
('**.py', 'lingua_python', None),
('**.zcml', 'lingua_xml', None),
('**.pt', 'lingua_xml', None),
]
},
)