forked from wo1fsea/PyTexturePacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 1.15 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='PyTexturePacker',
packages=find_packages(exclude=['docs', 'tests', 'test_image']),
version='1.0.1',
description='an package to create sprite sheets or sprite atlases',
author='Quanyong Huang',
author_email='[email protected]',
url='https://github.com/wo1fsea/PyTexturePacker',
download_url='https://github.com/wo1fsea/PyTexturePacker/releases/tag/v1.0.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.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics"
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)