-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 857 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
35
36
37
38
39
40
41
42
43
from setuptools import setup
import os
_dirs = \
[
'logs',
'output',
'output/heroes',
'output/adversaries',
]
for _dir in _dirs:
if (not os.path.isdir(_dir)):
os.makedirs(_dir)
setup \
(
name='hammerhal',
version='0.2',
install_requires =
[
'jsonschema',
'Pillow',
'fontTools',
'camel-case-switcher>=1.2',
'yn-input',
],
packages =
[
'hammerhal',
'hammerhal.diftool',
'hammerhal.compilers',
'hammerhal.generator',
'hammerhal.text_drawer',
],
package_dir={ '': 'src' },
url='https://github.com/USSX-Hares/hammerhal',
license='MIT',
author='USSX Hares / Peter Zaitcev',
author_email='[email protected]',
description='Tools for card generation in Warhammer Quest: Shadow over Hammerhal'
)