-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
82 lines (75 loc) · 2.31 KB
/
setup.py
File metadata and controls
82 lines (75 loc) · 2.31 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import os
from setuptools import setup, find_packages
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()
requires = ('Babel',
'ZODB3',
'awesome-slugify',
'betahaus.viewcomponent>=0.4.1',
'colander>=1.4',
'deform>=2.0.4',
'deform_autoneed>=0.2.2b',
'fanstatic',
'html2text==2019.8.11', # Last py 2.7 version
'js.bootstrap>=3.3.4',
'js.jqueryui',
'peppercorn',
'pyramid',
'pyramid_beaker',
'pyramid_chameleon',
'pyramid_deform',
'pyramid_mailer',
'pyramid_tm',
'pyramid_zodbconn',
'pytz',
'repoze.catalog',
'repoze.evolution',
'repoze.folder',
'repoze.lru',
'six',
'zc.lockfile',
'zope.component',
'zope.interface',
'zope.copy',)
extras_require = {
'thumbnails': (
'Pillow',
'plone.scale',
),
}
tests_require = requires + extras_require['thumbnails']
setup(name='Arche',
version='0.1dev',
description='Arche skeleton CMS and content framework',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Intended Audience :: Developers",
],
author='Robin Harms Oredsson and contributors',
author_email='robin@betahaus.net',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=tests_require,
extras_require=extras_require,
test_suite="arche",
entry_points = """\
[paste.app_factory]
main = arche:main
[fanstatic.libraries]
arche = arche.fanstatic_lib:library
[console_scripts]
arche = arche.scripting:run_arche_script
[pyramid.scaffold]
arche_buildout=arche.scaffolds:BuildoutTemplate
arche_plugin=arche.scaffolds:PluginTemplate
""",
)