-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (55 loc) · 1.94 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
61
62
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '1.9.2.dev0'
long_description = '\n\n'.join(
[open('README.rst').read(), open('CHANGES.rst').read()]
)
setup(
name='bobtemplates.cs',
version=version,
description='Templates for Plone projects by CodeSyntax',
long_description=long_description,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Code Generators',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
keywords='web plone zope skeleton project',
author='Mikel Larreategi',
author_email='[email protected]',
url='https://github.com/codesyntax/bobtemplates.cs',
license='GPLv2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bobtemplates'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'mr.bob',
'bobtemplates.plone',
'lxml',
'stringcase',
],
setup_requires=[],
tests_require=[],
extras_require={},
entry_points={
'mrbob_templates': [
'cs_plone_buildout=bobtemplates.cs.bobregistry:cs_plone_buildout', # NOQA E501
'cs_plone_volto_buildout=bobtemplates.cs.bobregistry:cs_plone_volto_buildout', # NOQA E501
'cs_migration=bobtemplates.cs.bobregistry:cs_migration', # NOQA E501
]
},
)