-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
34 lines (33 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
version='[VERSION]',
name='qgis2to3',
packages=find_packages(exclude=['tests*']),
scripts=[
'qgis2to3/api2finder/qgis2apifinder',
'qgis2to3/codeporting/qgis2to3'
],
url='https://github.com/opengisch/qgis2to3',
download_url='https://github.com/opengisch/qgis2to3/archive/[VERSION].tar.gz',
license='GPLv3',
author='Marco Bernasocchi',
author_email='[email protected]',
description='Tools to help porting QGIS Plugins from api v2 to api v3',
keywords=[
'qgis',
'qgis2to3',
'porting'
],
classifiers=[
'Topic :: Database',
'License :: OSI Approved :: GNU General Public License v3 or later ('
'GPLv3+)',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development',
'Topic :: Software Development :: Bug Tracking',
'Development Status :: 4 - Beta'
],
# install_requires=[],
python_requires='~=3.3',
)