mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-26 17:02:28 +01:00
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
from os import path
|
|
import sys
|
|
from setuptools import setup
|
|
|
|
BUILD = 0
|
|
VERSION = '0.1'
|
|
RELEASE = VERSION
|
|
|
|
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',
|
|
)
|