|
1 | 1 | """
|
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. |
3 | 12 |
|
4 | 13 |
|
5 | 14 | Links
|
6 | 15 | -----
|
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>`_ |
10 | 18 | """
|
11 | 19 |
|
12 | 20 | from setuptools import setup
|
13 | 21 | setup(
|
14 | 22 | name='pyDAL',
|
15 |
| - version='1.0', |
16 |
| - url='http://', |
| 23 | + version='0.12.25', |
| 24 | + url='http://https://github.com/web2py/pydal', |
17 | 25 | license='BSD',
|
18 | 26 | author='Massimo Di Pierro',
|
19 | 27 | author_email='mdipierro@cs.depaul.edu',
|
20 | 28 | maintainer='Giovanni Barillari',
|
21 | 29 | maintainer_email='gi0baro@d4net.org',
|
22 |
| - description='Some description needed here', |
| 30 | + description='a pure Python Database Abstraction Layer', |
23 | 31 | long_description=__doc__,
|
24 | 32 | packages=['pydal', 'pydal.adapters', 'pydal.helpers', 'pydal.contrib',
|
25 | 33 | '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'], |
27 | 36 | include_package_data=True,
|
28 | 37 | zip_safe=False,
|
29 | 38 | platforms='any',
|
|
35 | 44 | 'Operating System :: OS Independent',
|
36 | 45 | 'Programming Language :: Python',
|
37 | 46 | 'Programming Language :: Python :: 2',
|
38 |
| - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
| 47 | + 'Topic :: Database :: Front-Ends', |
39 | 48 | 'Topic :: Software Development :: Libraries :: Python Modules'
|
40 | 49 | ]
|
41 | 50 | )
|
0 commit comments