-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 873 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 873 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Tools for making Qlikview load scripts and doing other automation tasks on Qlikview projects.',
'author': 'BenSimonds',
'url': 'https://github.com/BenSimonds/Qlik-Script-Tools',
'download_url': 'https://github.com/BenSimonds/Qlik-Script-Tools/archive/master.zip',
'author_email': 'BSSimonds@gmail.com',
'version': '0.1.2dev',
'packages': ['qvstools','qvstools.tests'],
'scripts': ['runtests.py'],
'name': 'Qlik-Script-Tools',
'entry_points':{
'console_scripts':[
'QVSubbify=qvstools.subbify:subbify_comandline',
'QVReplaceFonts=qvstools.prj:replace_fonts_commandline'
]
},
'test_suite':'qvstools.tests',
'include_package_data':True
}
setup(**config)