-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (48 loc) · 1.42 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
# coding=utf8
from setuptools import find_packages
from setuptools import setup
import os
version = '0.0.2.dev0'
setup(
name='collective.zodbdebug',
version=version,
description='Tools to debug a ZODB.',
long_description=(
open('README.rst').read() + '\n\n' +
open(os.path.join('docs', 'HISTORY.rst')).read()
),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Framework :: ZODB',
'Framework :: Zope :: 2',
'Framework :: Zope',
'Framework :: Zope2',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
],
keywords='zope zodb debug',
author='Rafael Oliveira',
author_email='rafaelbco@gmail.com',
url='https://github.com/collective/collective.zodbdebug',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'ZODB3',
'docopt',
'plone.memoize',
'rbco.caseclasses',
'setuptools',
'walkdir',
],
entry_points={
'zopectl.command': [
'scan_blobs = collective.zodbdebug.scripts.scan_blobs:main',
'show_transactions = collective.zodbdebug.scripts.show_transactions:main',
]
},
)