forked from labyrinth-team/labyrinth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 710 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
from labyrinth_lib import __version__
setup(name='Labyrinth',
version=__version__,
description='',
author='Labyrinth is a lightweight mind-mapping tool',
author_email='Don@scorgie.org',
url='http://people.gnome.org/~dscorgie/labyrinth.html',
packages=['labyrinth_lib'],
scripts=['labyrinth'],
data_files=[('share/labyrinth', ['data/labyrinth.glade', 'data/labyrinth-ui.xml'])],
requires=['PyGTK'],
classifiers = [
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
]
)