-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_data.py
executable file
·61 lines (51 loc) · 2.11 KB
/
setup_data.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
58
59
60
61
####################################################################################################
#
# XXXXX - XXXXX
# Copyright (C) 2015 - XXXXX
#
####################################################################################################
####################################################################################################
import os
####################################################################################################
# Utility function to read the README file.
# Used for the long_description.
def read(file_name):
path = os.path.dirname(__file__)
if os.path.basename(path) == 'tools':
path = os.path.dirname(path)
absolut_file_name = os.path.join(path, file_name)
return open(absolut_file_name).read()
####################################################################################################
setup_dict = dict(
name='pygeoportail',
version='0.1.0',
author='Fabrice Salvaire',
author_email='fabrice.salvaire@orange.fr',
description='A Bibliography Manager',
license = "GPLv3",
keywords = "bibliography",
url='http://fabrice-salvaire.pagesperso-orange.fr/software/index.html',
scripts=['bin/pygeoportail'],
packages=['PyGeoPortail'],
data_files = [('share/PyGeoPortail/icons',['share/icons/pygeoportail.svg']),
('share/applications', ['spec/pygeoportail.desktop']),
],
long_description=read('README.pypi'),
# cf. http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Education",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
],
install_requires=[
'pyqt>=4.9',
],
)
####################################################################################################
#
# End
#
####################################################################################################