Skip to content

Commit 0bbbe1d

Browse files
committed
Merge pull request web2py#21 from gi0baro/master
Crafting a Christmas pre-release
2 parents 83d97c6 + 7f24233 commit 0bbbe1d

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include LICENSE
22
include AUTHORS
3+
recursive-include tests *
34
recursive-include docs *

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ It dynamically generates the SQL in real time using the specified dialect for th
66

77
pyDAL comes from the original web2py's DAL, with the aim of being wide-compatible. pyDAL doesn't require web2py and can be used in any Python context.
88

9+
[![pip version](https://img.shields.io/pypi/v/pydal.svg?style=flat)](https://pypi.python.org/pypi/pydal)
910
[![Build Status](https://img.shields.io/travis/web2py/pydal.svg?style=flat)](https://travis-ci.org/web2py/pydal)
1011

1112
## Installation

setup.py

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,38 @@
11
"""
2-
pyDAL description...
2+
pyDAL is a pure Python Database Abstraction Layer.
3+
4+
It dynamically generates the SQL in real time using the specified dialect for
5+
the database back end, so that you do not have to write SQL code or learn
6+
different SQL dialects (the term SQL is used generically), and your code will
7+
be portable among different types of databases.
8+
9+
pyDAL comes from the original web2py's DAL, with the aim of being
10+
wide-compatible. pyDAL doesn't require web2py and can be used in any
11+
Python context.
312
413
514
Links
615
-----
7-
* `website <http://>`_
8-
* `documentation <http://>`_
9-
* `git repo <http://>`_
16+
* `website <https://github.com/web2py/pydal>`_
17+
* `documentation <http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer>`_
1018
"""
1119

1220
from setuptools import setup
1321
setup(
1422
name='pyDAL',
15-
version='1.0',
16-
url='http://',
23+
version='0.12.25',
24+
url='http://https://github.com/web2py/pydal',
1725
license='BSD',
1826
author='Massimo Di Pierro',
1927
author_email='mdipierro@cs.depaul.edu',
2028
maintainer='Giovanni Barillari',
2129
maintainer_email='gi0baro@d4net.org',
22-
description='Some description needed here',
30+
description='a pure Python Database Abstraction Layer',
2331
long_description=__doc__,
2432
packages=['pydal', 'pydal.adapters', 'pydal.helpers', 'pydal.contrib',
2533
'pydal.contrib.pg8000', 'pydal.contrib.pymysql',
26-
'pydal.contrib.pymysql.constants', 'pydal.contrib.simplejson'],
34+
'pydal.contrib.pymysql.constants', 'pydal.contrib.pymysql.tests',
35+
'pydal.contrib.simplejson'],
2736
include_package_data=True,
2837
zip_safe=False,
2938
platforms='any',
@@ -35,7 +44,7 @@
3544
'Operating System :: OS Independent',
3645
'Programming Language :: Python',
3746
'Programming Language :: Python :: 2',
38-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
47+
'Topic :: Database :: Front-Ends',
3948
'Topic :: Software Development :: Libraries :: Python Modules'
4049
]
4150
)

0 commit comments

Comments
 (0)