mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-27 14:52:15 +01:00
7 lines
138 B
Python
7 lines
138 B
Python
# pylint: disable-all
|
|
# type: ignore
|
|
from setuptools import setup
|
|
|
|
exec(open("yourpackage/version.py").read())
|
|
setup(version=__version__)
|