mirror of
https://codeberg.org/vlw/pysheeter.git
synced 2025-09-14 03:33:40 +02:00
13 lines
No EOL
474 B
Python
13 lines
No EOL
474 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = "pysheeter",
|
|
version = "2.0.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"]
|
|
) |