-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
33 lines (32 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from distutils.core import setup
from setuptools import find_packages
setup(
name='PyTexturePacker',
packages=find_packages(exclude=['docs', 'tests', 'test_image']),
version='1.2.1',
description='an package to create sprite sheets or sprite atlases',
long_description_content_type="text/x-rst",
long_description=open('README.rst').read(),
author='Quanyong Huang',
author_email='quanyongh@foxmail.com',
url='https://github.com/wo1fsea/PyTexturePacker',
download_url='https://github.com/wo1fsea/PyTexturePacker/releases/tag/v1.2.1',
keywords=['TexturePacker', 'cocos2d-x', 'sprite-sheet', 'texture-pack'],
license='MIT',
install_requires=['Pillow'],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)