-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
executable file
·63 lines (55 loc) · 2.08 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
50
51
52
53
54
55
56
57
58
59
60
61
62
try:
import setuptools
setuptools
except ImportError:
pass
from distutils.core import setup
#html_docs = glob('dbf/html/*')
long_desc="""
Currently supports dBase III, Clipper, FoxPro, and Visual FoxPro tables. Text is returned as unicode, and codepage settings in tables are honored. Memos and Null fields are supported. Documentation needs work, but author is very responsive to e-mails.
Not supported: index files (but can create tempory non-file indexes), auto-incrementing fields, and Varchar fields.
Installation: `pip install dbf`
"""
py2_only = ()
py3_only = ()
make = []
data = dict(
name='dbf',
version='0.99.10a1',
license='BSD License',
description='Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro .dbf files (including memos)',
long_description=long_desc,
url='https://github.com/ethanfurman/dbf',
packages=['dbf', ],
package_data={
'dbf' : [
'LICENSE',
'README.md',
'WHATSNEW',
]
},
provides=['dbf'],
install_requires=['aenum'],
author='Ethan Furman',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Database',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)
if __name__ == '__main__':
setup(**data)