-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from gi0baro/master
Crafting a Christmas pre-release
- Loading branch information
Showing
3 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include LICENSE | ||
include AUTHORS | ||
recursive-include tests * | ||
recursive-include docs * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,38 @@ | ||
""" | ||
pyDAL description... | ||
pyDAL is a pure Python Database Abstraction Layer. | ||
It dynamically generates the SQL in real time using the specified dialect for | ||
the database back end, so that you do not have to write SQL code or learn | ||
different SQL dialects (the term SQL is used generically), and your code will | ||
be portable among different types of databases. | ||
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. | ||
Links | ||
----- | ||
* `website <http://>`_ | ||
* `documentation <http://>`_ | ||
* `git repo <http://>`_ | ||
* `website <https://github.com/web2py/pydal>`_ | ||
* `documentation <http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer>`_ | ||
""" | ||
|
||
from setuptools import setup | ||
setup( | ||
name='pyDAL', | ||
version='1.0', | ||
url='http://', | ||
version='0.12.25', | ||
url='http://https://github.com/web2py/pydal', | ||
license='BSD', | ||
author='Massimo Di Pierro', | ||
author_email='[email protected]', | ||
maintainer='Giovanni Barillari', | ||
maintainer_email='[email protected]', | ||
description='Some description needed here', | ||
description='a pure Python Database Abstraction Layer', | ||
long_description=__doc__, | ||
packages=['pydal', 'pydal.adapters', 'pydal.helpers', 'pydal.contrib', | ||
'pydal.contrib.pg8000', 'pydal.contrib.pymysql', | ||
'pydal.contrib.pymysql.constants', 'pydal.contrib.simplejson'], | ||
'pydal.contrib.pymysql.constants', 'pydal.contrib.pymysql.tests', | ||
'pydal.contrib.simplejson'], | ||
include_package_data=True, | ||
zip_safe=False, | ||
platforms='any', | ||
|
@@ -35,7 +44,7 @@ | |
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Database :: Front-Ends', | ||
'Topic :: Software Development :: Libraries :: Python Modules' | ||
] | ||
) |