Commit 66a03ae5 authored by Kirill Smelkov's avatar Kirill Smelkov

Initial readme + setup.py + zodbtool package

parent fd6ad1b9
/zodbtools.egg-info
=========================================
Zodbtools - handy set of ZODB utilities
=========================================
This repository provides a set of handy ZODB utilities. We initially tried to
put them into ZODB itself, but Jim Fulton adviced__ not to load ZODB with
scripts anymore. So we are here:
__ https://github.com/zopefoundation/ZODB/pull/128#issuecomment-260970932
# zodbtools | pythonic package setup
from setuptools import setup, find_packages
# read file content
def readfile(path):
with open(path, 'r') as f:
return f.read()
setup(
name = 'zodbtools',
version = '0.0.0.dev1',
description = 'ZODB-related utilities',
long_description = readfile('README.rst'),
url = 'https://lab.nexedi.com/kirr/zodbtools',
license = 'GPLv2+',
author = 'Kirill Smelkov',
author_email= 'kirr@nexedi.com',
keywords = 'zodb utility tool',
package_dir = {'wendelin': ''},
packages = find_packages(),
install_requires = ['ZODB'],
classifiers = [_.strip() for _ in """\
Development Status :: 3 - Alpha
Intended Audience :: Developers
Operating System :: POSIX :: Linux
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Topic :: Database
Topic :: Utilities
Framework :: ZODB\
""".splitlines()]
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment