pysheeter/setup.py
2020-11-23 10:48:42 +01:00

25 lines
No EOL
751 B
Python

import setuptools
with open("README.md","r") as fh:
long_description = fh.read()
setuptools.setup(
name="pysheeter-VicW",
version="1.0.0",
author="VicW",
author_email="victor.vesterlund@gmail.com",
description="Lightweight Python-script to create sprite sheets from transparent PNGs with Pillow",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VictorWesterlund/pysheeter",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"Pillow",
],
python_requires='>=3.6',
)