-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.4 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
from setuptools import setup, find_packages
from os import path
version = '0.7'
README_PATH = path.join(path.dirname(path.abspath(__file__)), 'README.md')
try:
import m2r
LONG_DESCRIPTION = m2r.parse_from_file(README_PATH)
except Exception:
LONG_DESCRIPTION = ''
setup(name='ydbf-py3',
version=version,
description="Pythonic reader and writer for DBF/XBase files",
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='',
author='Scott Walton',
author_email='[email protected]',
url='http://www.pyobject.ru/projects/YDbf',
license='GNU GPL2',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests',
'venv']),
include_package_data=True,
zip_safe=True,
install_requires=[
'six'
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
ydbfdump = ydbf.dump:main
""",
)