-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
57 lines (54 loc) · 2.27 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
"""
/***************************************************************************
setup.py for pb_tool
A tool for building and deploying QGIS plugins
-------------------
begin : 2014-09-24
copyright : (C) 2014 by GeoApt LLC
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from setuptools import *
setup(
name='pb_tool',
version='2.0.2',
description='A tool to aid in QGIS Python plugin development',
long_description='pb_tool provides commands to deploy and publish a QGIS Python plugin.',
url='http://g-sherman.github.io/plugin_build_tool',
author='Gary Sherman',
author_email='[email protected]',
maintainer='Gary Sherman',
maintainer_email='[email protected]',
license='GPL2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Topic :: Scientific/Engineering :: GIS'],
keywords='QGIS PyQGIS',
platforms=['Linux', 'Windows', 'OS X'],
packages=find_packages(),
package_data={'pb_tool': ['templates/*.tmpl']},
include_package_data=True,
py_modules=['pb_tool'],
install_requires=[
'Click',
'Sphinx',
'colorama'
],
entry_points='''
[console_scripts]
pb_tool=pb_tool.pb_tool:cli
pbt=pb_tool.pb_tool:cli
''',
)