pysheeter/setup.py
Victor Westerlund 3cd3800ee0
feat: added typing and other small changes (#3)
* feat(refactor): added typing and other small changes

* fix(versioning): version 1.1.0
2023-06-17 14:05:12 +02:00

13 lines
No EOL
474 B
Python

from setuptools import setup, find_packages
setup(
name = "pysheeter",
version = "1.1.0",
description = "Simple python library for creating sprite sheets from images",
author = "Victor Westerlund",
author_email = "victor.vesterlund@gmail.com",
url = "https://github.com/victorwesterlund/reflect-client-python",
packages = ["pysheeter"],
# The requirement.txt file should also be updated when changing this
install_requires = ["pillow"]
)