mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-29 15:49:49 +01:00
yay
This commit is contained in:
58
setup.py
58
setup.py
@@ -3,38 +3,36 @@ import sys
|
||||
from setuptools import setup
|
||||
|
||||
BUILD = 0
|
||||
VERSION = '0.1'
|
||||
VERSION = "0.0.1"
|
||||
RELEASE = VERSION
|
||||
|
||||
if __name__ == '__main__':
|
||||
readme = path.join(path.dirname(path.abspath(__file__)), 'README.md')
|
||||
with open(readme, 'r') as f:
|
||||
if __name__ == "__main__":
|
||||
readme = path.join(path.dirname(path.abspath(__file__)), "README.md")
|
||||
with open(readme, "r") as f:
|
||||
long_desc = f.read()
|
||||
|
||||
setup(
|
||||
name='pytiled_parser',
|
||||
version=RELEASE,
|
||||
description='Python Library for parsing Tiled Map Editor maps.',
|
||||
long_description=long_desc,
|
||||
author='Benjamin Kirkbride',
|
||||
author_email='BenjaminKirkbride@gmail.com',
|
||||
license='MIT',
|
||||
url='https://github.com/Beefy-Swain/pytiled_parser',
|
||||
download_url='https://github.com/Beefy-Swain/pytiled_parser',
|
||||
install_requires=[
|
||||
'dataclasses',
|
||||
],
|
||||
packages=['pytiled_parser'],
|
||||
classifiers=[
|
||||
'Development Status :: 1 - Planning',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
],
|
||||
test_suite='tests',
|
||||
)
|
||||
name="pytiled_parser",
|
||||
version=RELEASE,
|
||||
description="Python Library for parsing Tiled Map Editor maps.",
|
||||
long_description=long_desc,
|
||||
author="Benjamin Kirkbride",
|
||||
author_email="BenjaminKirkbride@gmail.com",
|
||||
license="MIT",
|
||||
url="https://github.com/Beefy-Swain/pytiled_parser",
|
||||
download_url="https://github.com/Beefy-Swain/pytiled_parser",
|
||||
install_requires=["dataclasses"],
|
||||
packages=["pytiled_parser"],
|
||||
classifiers=[
|
||||
"Development Status :: 1 - Planning",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
],
|
||||
test_suite="tests",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user