easy_install the package should really work now
parent
916367c32e
commit
0ff0ca7fa9
|
|
@ -0,0 +1,2 @@
|
||||||
|
recursive-include src/test *.py *.sql
|
||||||
|
include README* COPYING* ez_setup.py
|
||||||
|
|
@ -116,6 +116,10 @@ distribution for details.
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
- 0.1.2
|
||||||
|
|
||||||
|
- ``easy_install JayDeBeApi`` should really work
|
||||||
|
|
||||||
- 0.1.1
|
- 0.1.1
|
||||||
|
|
||||||
- Fixed bug #688290 "NULL values with converters error on fetch."
|
- Fixed bug #688290 "NULL values with converters error on fetch."
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -24,7 +24,7 @@ print find_packages('src')
|
||||||
setup(
|
setup(
|
||||||
#basic package data
|
#basic package data
|
||||||
name = 'JayDeBeApi',
|
name = 'JayDeBeApi',
|
||||||
version = '0.1.1',
|
version = '0.1.2',
|
||||||
author = 'Bastian Bowe',
|
author = 'Bastian Bowe',
|
||||||
author_email = 'bastian.bowe@gmail.com',
|
author_email = 'bastian.bowe@gmail.com',
|
||||||
license = 'GNU LGPL',
|
license = 'GNU LGPL',
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Metadata-Version: 1.0
|
Metadata-Version: 1.0
|
||||||
Name: JayDeBeApi
|
Name: JayDeBeApi
|
||||||
Version: 0.1.1
|
Version: 0.1.2
|
||||||
Summary: A bridge from JDBC database drivers to Python DB-API.
|
Summary: A bridge from JDBC database drivers to Python DB-API.
|
||||||
Home-page: https://launchpad.net/jaydebeapi
|
Home-page: https://launchpad.net/jaydebeapi
|
||||||
Author: Bastian Bowe
|
Author: Bastian Bowe
|
||||||
|
|
@ -124,6 +124,10 @@ Description: ===================================================================
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
- 0.1.2
|
||||||
|
|
||||||
|
- ``easy_install JayDeBeApi`` should really work
|
||||||
|
|
||||||
- 0.1.1
|
- 0.1.1
|
||||||
|
|
||||||
- Fixed bug #688290 "NULL values with converters error on fetch."
|
- Fixed bug #688290 "NULL values with converters error on fetch."
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
COPYING
|
||||||
|
COPYING.LESSER
|
||||||
|
MANIFEST.in
|
||||||
|
README.rst
|
||||||
|
ez_setup.py
|
||||||
setup.py
|
setup.py
|
||||||
src/JayDeBeApi.egg-info/PKG-INFO
|
src/JayDeBeApi.egg-info/PKG-INFO
|
||||||
src/JayDeBeApi.egg-info/SOURCES.txt
|
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.egg-info/top_level.txt
|
||||||
src/jaydebeapi/__init__.py
|
src/jaydebeapi/__init__.py
|
||||||
src/jaydebeapi/dbapi2.py
|
src/jaydebeapi/dbapi2.py
|
||||||
|
src/test/integration_test.py
|
||||||
|
src/test/data/create.sql
|
||||||
|
src/test/data/insert.sql
|
||||||
Loading…
Reference in New Issue