-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
setup.py
33 lines (30 loc) · 985 Bytes
/
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
# -*- coding: utf-8 -*-
"""setuptools mock for tox."""
from setuptools import find_packages
from setuptools import setup
setup(
name='buildout.coredev',
version='1.0',
description='Plone Core Development Buildout',
long_description='',
# Get more from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Environment :: Web Environment',
'Framework :: Plone',
'Framework :: Plone :: 5.2',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
keywords='Python Plone',
author='Plone Foundation',
author_email='',
url='https://github.com/plone/buildout.coredev',
license='GPL version 2',
zip_safe=False,
install_requires=[],
extras_require={},
entry_points="""""",
)