Skip to content

Commit

Permalink
Merge pull request #21 from gi0baro/master
Browse files Browse the repository at this point in the history
Crafting a Christmas pre-release
  • Loading branch information
gi0baro committed Dec 25, 2014
2 parents 83d97c6 + 7f24233 commit 0bbbe1d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include LICENSE
include AUTHORS
recursive-include tests *
recursive-include docs *
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ It dynamically generates the SQL in real time using the specified dialect for th

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.

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

## Installation
Expand Down
27 changes: 18 additions & 9 deletions setup.py
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',
Expand All @@ -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'
]
)

0 comments on commit 0bbbe1d

Please sign in to comment.