mirror of
https://github.com/ldericher/fftcgtool
synced 2025-01-15 15:02:59 +00:00
19 lines
506 B
Python
19 lines
506 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="fftcgtool",
|
||
|
version="0.2",
|
||
|
author="LDericher",
|
||
|
author_email="ldericher@gmx.de",
|
||
|
setup_requires="setuptools-pipfile",
|
||
|
use_pipfile=True,
|
||
|
entry_points={
|
||
|
"console_scripts": [
|
||
|
"fftcgtool = fftcgtool.scripts.fftcgtool:main"
|
||
|
],
|
||
|
},
|
||
|
license="LICENSE",
|
||
|
description="Card import tool for 'Final Fantasy TCG Complete' mod for the 'Tabletop Simulator' game",
|
||
|
long_description=open("README.md").read(),
|
||
|
)
|