-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (46 loc) · 1.72 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = '0.3'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['js.forkit',
'kotti>=0.8a',
'kotti_calendar',
'kotti_gallery',
'kotti_site_gallery',
'kotti_tinymce',
'kotti_video',
'psycopg2',
'pyramid',
'pyramid_debugtoolbar',
'waitress', ]
tests_require = []
development_requires = ['minify', ]
setup(name='kotti_website',
version=version,
description="Kotti CMS Website",
long_description="""Website of the Kotti Content Management System""",
classifiers=["Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ],
keywords='web pyramid pylons',
author='Andreas Kaiser',
author_email='[email protected]',
url='http://www.kotti-cms.org/',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=tests_require,
extras_require={'testing': tests_require,
'development': development_requires, },
entry_points="""[paste.app_factory]
main = kotti_website:main
[fanstatic.libraries]
ffl = kotti_website.static:lib""",
)