-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
60 lines (55 loc) · 1.6 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
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''
install_requires = [
'js.fullcalendar>=2.2.5',
'Kotti>=0.10b1',
]
tests_require = [
'pytest-cov',
'pytest',
'webtest',
'wsgi_intercept',
'zope.testbrowser',
'Webtest',
]
setup(
name='kotti_calendar',
version='0.9.0-dev',
description="Add a calendar to your Kotti site",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: Repoze Public License",
],
author='Daniel Nouri',
author_email='daniel.nouri@gmail.com',
url='http://pypi.python.org/pypi/kotti_calendar',
keywords='calendar fullcalendar kotti cms pylons pyramid',
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires + tests_require,
message_extractors={
'.': [
('**.py', 'lingua_python', None),
('**.pt', 'lingua_xml', None),
]
},
entry_points={
'fanstatic.libraries': [
'kotti_calendar = kotti_calendar.fanstatic:library',
],
},
)