2021-09-07 13:16:41 +00:00
|
|
|
from setuptools import setup, find_packages
|
2021-09-07 13:02:48 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="fftcgtool",
|
|
|
|
version="0.2",
|
2021-09-07 13:16:41 +00:00
|
|
|
packages=find_packages(),
|
2021-09-07 13:02:48 +00:00
|
|
|
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(),
|
|
|
|
)
|