-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.14 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.14 KB
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
from setuptools import setup, find_packages
setup(
name = 'KETIPreDataTransformation',
version = '1.0',
description = 'Data Transformtion Packages',
author = 'Jaewon Moon',
author_email = 'jwmoon@keti.re.kr',
#url = '',
#download_url = '',
install_requires = [ ],
packages = find_packages(exclude = ['docs', 'tests*']),
keywords = ['liquibase', 'db migration'],
python_requires = '>=3',
package_data = {
'pyquibase' : [
'db-connectors/sqlite-jdbc-3.18.0.jar',
'db-connectors/mysql-connector-java-5.1.42-bin.jar',
'db-connectors/postgresql-42.1.3.jar',
'liquibase/liquibase.jar',
'liquibase/lib/snakeyaml-1.13.jar'
]},
zip_safe=False,
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)