Commit 67c1ace3 authored by Chris Rossi's avatar Chris Rossi

Initial skeleton.

parents
distribute*.tar.gz
venv
*.pyc
*.egg-info
[easy_install]
zip_ok = false
[nosetests]
match=^test
where=zodburi
nocapture=1
cover-package=zodburi
cover-erase=1
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except:
README = ''
CHANGES = ''
requires = ['ZODB3']
setup(name='zodburi',
version='0.1a1',
description=('Constructs ZODB storage instances from URIs.'),
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: Repoze Public License",
],
keywords='zodb zodbconn',
author="Chris Rossi",
author_email="pylons-discuss@googlegroups.com",
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
tests_require = requires,
install_requires = requires,
test_suite="zodburi",
)
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