forked from benley/kye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 870 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
from glob import glob
share = glob("levels/*.kye")
share.append("images.tar.gz")
setup(
name="kye",
version="2.0",
description="Clone of Kye puzzle game",
url="http://games.moria.org.uk/kye/pygtk",
author="Colin Phipps",
author_email="[email protected]",
scripts=["Kye", "Kye-edit"],
packages=["kye"],
data_files=[
("share/kye", share),
],
install_requires=[
"pygobject>=3",
"pyxdg",
"pycairo",
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Games/Entertainment :: Puzzle Games",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License (GPL)",
"User Interface :: Graphical :: Gnome"
],
)