-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (46 loc) · 1.44 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
from qcli import __version__
with open('README.md') as file:
long_description = file.read()
setup(
name='quake-cli-tools',
version=__version__,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/JoshuaSkelly/quake-cli-tools',
author='Joshua Skelton',
author_email='joshua.skelton@gmail.com',
license='MIT',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'Pillow>=6.2.0',
'progress>=1.5',
'vgio>=1.1.2',
'svgwrite>=1.3.1',
'tabulate>=0.8.3',
'watchdog>=0.9.0',
],
entry_points={
'console_scripts': [
'bsp2svg=qcli.bsp2svg.cli:main',
'bsp2wad=qcli.bsp2wad.cli:main',
'image2spr=qcli.image2spr.cli:main',
'pak=qcli.pak.cli:main',
'qmount=qcli.qmount.cli:main',
'spr2image=qcli.spr2image.cli:main',
'wad=qcli.wad.cli:main',
'unpak=qcli.unpak.cli:main',
'unwad=qcli.unwad.cli:main',
],
},
keywords=[''],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
]
)