forked from Feyorsh/iQuHack_2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 810 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
#!/usr/bin/env python
from utils import read
from distutils.core import setup
if __name__ == '__main__':
setup(
name = "Ice Emblem",
version = read('VERSION').strip('\n'),
author = "Elia Argentieri",
author_email = "elia.argentieri@openmailbox.org",
description = "Ice Emblem aims to be a completely free software clone of Fire Emblem.",
license = "GPLv3",
keywords = "game videogame pygame",
url = "https://elinvention.ovh/progetti/ice-emblem/",
packages = ['ice_emblem'],
long_description = read('README.md'),
classifiers = [
"Development Status :: 1 - Planning",
"Topic :: Videogame",
"License :: OSI Approved :: GPLv3 License",
], requires=['pygame', 'PyYAML']
)