-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 766 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 766 Bytes
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
#!/usr/bin/env python3
# coding=utf-8
from setuptools import setup
setup(
name='scox',
version='1.0',
description='NPC generator for INS-MV 4',
author='Bertrand Moreau',
author_email='moreau.bertrand@gmail.com',
url='https://github.com/bmoreau/scox-gen',
license='BSD 3-Clause',
py_modules=['scx'],
packages=['scox', 'scox.export'],
package_data={'scox': ['profiles/demons/*.scx',
'profiles/angels/*.scx',
'profiles/archetypes/*.scx',
'sheets/*.png']},
install_requires=['Click',
'colorama',
'svgwrite'],
entry_points='''
[console_scripts]
scx=scx:scx
''',
)