-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1.1 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
31
32
33
dependencies = [
'hy >= 1',
'hyrule >= 0.7.0',
'toolz >= 0.12.1',
'construct >= 2.10.70',
'blessed >= 1.20.0',
'platformdirs >= 4.3.3',
'metadict >= 0.1.3']
import setuptools
from pathlib import Path
setuptools.setup(
name = 'simalq',
version = '0.0.0',
author = 'Kodi B. Arfer',
description = 'Infinitesimal Quest 2 + ε: A turn-based puzzling dungeon crawler',
long_description = Path('README.rst').read_text(),
long_description_content_type = 'text/x-rst',
project_urls = {
'Homepage': 'http://hylang.org/simalq',
'Source Code': 'https://github.com/hylang/simalq'},
python_requires = '>= 3.10',
install_requires = dependencies,
packages = setuptools.find_packages(),
package_data = dict(simalq = [
str(p.relative_to('simalq'))
for p in Path('simalq').rglob('*.hy')]),
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Hy',
'Topic :: Games/Entertainment :: Puzzle Games'])