mirror of
https://codeberg.org/vlw/pysheeter.git
synced 2025-09-13 19:23:41 +02:00
* feat(refactor): added typing and other small changes * fix(versioning): version 1.1.0
13 lines
No EOL
474 B
Python
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"]
|
|
) |