-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.33 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
VERSION = __import__('set_db_pdi').__version__
setup(
name='pentaho-db-changer',
packages=['set_db_pdi'],
version=VERSION,
description='Change dynamically Pentaho database connections from '
'kjb, ktr and xml files',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst'),
'r').read(),
author='Diogo Munaro Vieira, '
'Thiago Pereira Fernandes',
author_email='[email protected], '
url='https://github.com/kappius/pyheaderfile',
download_url='https://github.com/kappius/pyheaderfile/archive/%s.tar.gz' %
VERSION,
keywords=['pentaho', 'kettle', 'report', 'ktr', 'kjb', 'xml', 'txt'],
license='Apache',
include_package_data=True,
install_requires=['xlrd', 'xlwt', 'openpyxl', 'unicodecsv'],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: '
'Python Modules',
'Topic :: Utilities'],
)