-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (32 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (32 loc) · 1.57 KB
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 python3
from setuptools import setup
import sys
if sys.version_info.major < 3:
sys.stderr.write("Please use Python version 3\n")
sys.exit(1)
setup(name='dndmake',
version='0.2',
author="Chiel Kooijman, Patrick de Kok",
author_email="chiel999@gmail.com",
description="General purpose D&D 3.5 toolkit.",
license="GPLv3",
url="https://github.com/chielk/dndmake",
scripts=["dndmake", "roll"],
packages=["dndraces", "dndhelper"],
data_files=[('/etc/bash_completion.d', ['extras/dndmake',
'extras/roll']),
('/usr/local/share/zsh/site-functions', ['extras/_dndmake',
'extras/_roll']),
('/usr/local/share/man/man1', ['extras/dndmake.1',
'extras/roll.1',
'extras/dndmake-npc.1',
'extras/dndmake-wildshape.1']),
('/etc/dndmake/races', ['dndraces/human.py',
'dndraces/elf.py',
'dndraces/gnome.py',
'dndraces/half_elf.py',
'dndraces/half_orc.py',
'dndraces/halfling.py',
'dndraces/dwarf.py'])],
install_requires=["argparse>=1.0", "numpy>=1.8.2", "pyperclip>=1.3"],
)