-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (57 loc) · 1.85 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
63
64
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '0.3'
long_description = '\n\n'.join([
open('README.rst').read(),
open('CONTRIBUTORS.rst').read(),
open('CHANGES.rst').read(),
])
setup(
name='bobtemplates.migration',
version=version,
description='Templates for Plone projects.',
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.6',
'Programming Language :: Python :: 3.7',
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
'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='Plone Foundation',
author_email='plone-developers@lists.sourceforge.net',
url='https://github.com/plone/bobtemplates.migration',
license='GPL version 2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['bobtemplates'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'mr.bob',
'lxml',
'case-conversion',
'colorama',
'bobtemplates.plone',
],
setup_requires=[],
tests_require=[],
extras_require={},
entry_points={
'mrbob_templates': [
'jsonify = bobtemplates.migration.bobregistry:jsonify', # NOQA E501
],
},
)