-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (41 loc) · 1.24 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '1.2.3.dev0'
setup(
name='collective.monkeypatcher',
version=version,
description=("Support for applying monkey patches late in the startup "
"cycle by using ZCML configuration actions"),
long_description='\n'.join([
open("README.rst").read(),
open("CHANGES.rst").read()]),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords='zope monkey patch',
author='Martin Aspeli',
author_email='[email protected]',
url='https://github.com/plone/collective.monkeypatcher',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'six',
],
extras_require={
'test': [
'zope.component',
'zope.configuration',
],
}
)