Skip to content

Commit 2fceccb

Browse files
committed
Adding a zanthor script.
1 parent bd45578 commit 2fceccb

File tree

4 files changed

+8
-91
lines changed

4 files changed

+8
-91
lines changed

scripts/zanthor

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env python
2+
3+
import zanthor.main
4+
if __name__ == "__main__":
5+
zanthor.main.main()
6+

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'name':APP_NAME,
2323
'version':'1.2',
2424
'license': 'GPL',
25-
'description':'Zanthor is a game where you play an evil robot castle which is powered by steam.',
25+
'description':'Zanthor is a game where you play an evil robot castle which is powered by steam. @zanthorgame #python #pygame',
2626
'author':'zanthor.org',
2727
'author_email':'[email protected]',
2828
'url':'http://www.zanthor.org/',
@@ -82,6 +82,7 @@
8282
'zanthor.pgu',
8383
'zanthor.pgu.gui',
8484
],
85+
'scripts': ['scripts/zanthor'],
8586
}
8687

8788
PACKAGEDATA.update(METADATA)

zanthor/const.py

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def data_dir(*args):
1818
_DATA_DIR = os.path.join('zanthor', 'data')
1919
if not os.path.exists(_DATA_DIR):
2020
_DATA_DIR = os.path.join(os.path.split(__file__)[0], 'data')
21-
print _DATA_DIR
2221
return os.path.join(*([_DATA_DIR] + list(args)))
2322

2423
# the base size.

zanthor/setup.py

-89
This file was deleted.

0 commit comments

Comments
 (0)