|
Revision 3:493d652a7e84, 0.6 kB
(checked in by tyrion-mx, 2 years ago)
|
Added dbf.sorteddict, django is no more needed to use pyDBF.
|
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
from distutils.core import setup |
|---|
| 4 |
|
|---|
| 5 |
setup( |
|---|
| 6 |
name='pyDBF', |
|---|
| 7 |
version='0.1a.dev', |
|---|
| 8 |
description='Search, read and write Dbase and Xbase files', |
|---|
| 9 |
author='Tyrion MX', |
|---|
| 10 |
author_email='tyrion.mx@gmail.com', |
|---|
| 11 |
url='http://assembla.com/spaces/pyDBF', |
|---|
| 12 |
packages=['dbf'], |
|---|
| 13 |
keywords=['dbf', 'Dbase', 'Xbase'], |
|---|
| 14 |
classifiers=[ |
|---|
| 15 |
'Development Status :: 3 - Alpha', |
|---|
| 16 |
'Intended Audience :: Developers', |
|---|
| 17 |
'License :: OSI Approved :: GNU General Public License (GPL)', |
|---|
| 18 |
'Natural Language :: English', |
|---|
| 19 |
'Operating System :: OS Independent', |
|---|
| 20 |
'Programming Language :: Python' |
|---|
| 21 |
] |
|---|
| 22 |
) |
|---|