forked from mherrmann/pypxlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (46 loc) · 1.48 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
"""Python bindings for the pxlib library for reading and writing Paradox
databases.
See:
https://github.com/mherrmann/pypxlib
"""
from setuptools import setup
description = \
'Python bindings for the pxlib library for reading and writing Paradox ' \
'databases.'
setup(
name='pypxlib',
version='1.7',
description=description,
long_description=
description + '\n\nHome page: https://github.com/mherrmann/pypxlib',
url='https://github.com/mherrmann/pypxlib',
author='Michael Herrmann',
author_email='[my first name]@[my last name].io',
license='GPLv2',
platforms=['MacOS', 'Windows', 'Debian'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Database',
'Topic :: Software Development :: Libraries'
],
keywords='paradox database pxlib',
packages=['pypxlib', 'pypxlib.pxlib_ctypes'],
package_data={
'pypxlib.pxlib_ctypes': [
'pxlib.dll', 'pxlib_x64.dll', 'libpx.dylib', 'libpx.so'
]
}
)