easy_install the package should really work now

master
baztian 2011-01-25 15:33:10 +01:00
parent 916367c32e
commit 0ff0ca7fa9
5 changed files with 179 additions and 161 deletions

2
MANIFEST.in 100644
View File

@ -0,0 +1,2 @@
recursive-include src/test *.py *.sql
include README* COPYING* ez_setup.py

View File

@ -116,6 +116,10 @@ distribution for details.
Changelog
=========
- 0.1.2
- ``easy_install JayDeBeApi`` should really work
- 0.1.1
- Fixed bug #688290 "NULL values with converters error on fetch."

View File

@ -24,7 +24,7 @@ print find_packages('src')
setup(
#basic package data
name = 'JayDeBeApi',
version = '0.1.1',
version = '0.1.2',
author = 'Bastian Bowe',
author_email = 'bastian.bowe@gmail.com',
license = 'GNU LGPL',

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: JayDeBeApi
Version: 0.1.1
Version: 0.1.2
Summary: A bridge from JDBC database drivers to Python DB-API.
Home-page: https://launchpad.net/jaydebeapi
Author: Bastian Bowe
@ -124,6 +124,10 @@ Description: ===================================================================
Changelog
=========
- 0.1.2
- ``easy_install JayDeBeApi`` should really work
- 0.1.1
- Fixed bug #688290 "NULL values with converters error on fetch."

View File

@ -1,3 +1,8 @@
COPYING
COPYING.LESSER
MANIFEST.in
README.rst
ez_setup.py
setup.py
src/JayDeBeApi.egg-info/PKG-INFO
src/JayDeBeApi.egg-info/SOURCES.txt
@ -5,3 +10,6 @@ src/JayDeBeApi.egg-info/dependency_links.txt
src/JayDeBeApi.egg-info/top_level.txt
src/jaydebeapi/__init__.py
src/jaydebeapi/dbapi2.py
src/test/integration_test.py
src/test/data/create.sql
src/test/data/insert.sql