-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 1.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
## This file may be used under the terms of the GNU General Public
## License version 2.0 as published by the Free Software Foundation
## and appearing in the file LICENSE included in the packaging of
## this file.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
## See the NOTICE file distributed with this work for additional
## information regarding copyright ownership.
from distutils.core import setup
setup(name='ginkgo',
version='0.32',
url = 'http://wiki.mandriva.com/en/Ginkgo',
download_url = 'http://svn.mandriva.com/svn/packages/cooker/ginkgo/current/SOURCES/',
package_dir = {"": "src"},
# py_modules = ["ginkgo"],
packages=["ginkgo", "ginkgo.dao", "ginkgo.dialogs", "ginkgo.editors", "ginkgo.model", "ginkgo.ontologies", "ginkgo.util", "ginkgo.views"],
description='Ginkgo is a navigator for Nepomuk, the KDE semantic toolkit',
scripts=["ginkgo"],
author='Stéphane Laurière',
author_email='slauriere@mandriva.com',
requires=['PyKDE4'],
)
# ("/usr/share/locale/fr/LC_MESSAGES/ginkgo.mo", ["po/ginkgo.mo"]
# install_requires=["PyKDE4",],