-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·49 lines (43 loc) · 1.69 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /usr/bin/env python
from distutils.core import setup
DESCRIPTION = """\
dbfpy is a python-only module for reading and writing DBF-files.
It was created by Jeff Kunce and then modified by Hans Fiby
and Yaroslav Samchuk. Dbfpy was ported to Python 3.x by James
Douglass.
dbfpy can read and write simple DBF-files. The `DBF-format
<http://www.clicketyclick.dk/databases/xbase/format/>`_
was developed about 30 years ago and was used by a number
of simple database applications (dBase, Foxpro, Clipper, ...).
The basic datatypes numbers, short text, and dates are available.
Many different extensions have been used; dbfpy can read and write
only simple DBF-files.
"""
def run():
setup(name="dbfpy3",
version="2.2.5",
description="Access .DBF (dBase) files from python",
url="http://dbfpy.sourceforge.net/",
license="public domain",
author="Jeff Kunce",
maintainer_email="[email protected]",
packages=["dbfpy3"],
long_description=DESCRIPTION,
download_url=
"http://sourceforge.net/project/showfiles.php?group_id=140566",
platforms=["OS Independent"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
if __name__ == "__main__":
run()
# vim: set et sts=4 sw=4 :