-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.2 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
#!/usr/bin/python3
from distutils.core import setup
import sys
import os
if not os.access("README.txt", os.F_OK) :
print("Generate README.txt, using distreadem.sh (requires pandoc)", file=sys.stderr)
sys.exit(-1)
long_description = open('README.txt').read()
setup(
name = "qgmap",
version = "0.2",
description = "Google Map widget for PySyde/PyQt4",
author = "David Garcia Garzon",
author_email = "[email protected]",
url = 'https://github.com/vokimon/python-qgmap',
long_description = long_description,
license = 'GNU General Public License v3 or later (GPLv3+)',
packages=[
'qgmap',
],
package_dir={'qgmap': 'qgmap'},
package_data={'qgmap': ['qgmap.js','qgmap.html']},
scripts=[
'qgmap-example.py',
],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: X11 Applications :: Qt',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
)