forked from Totga/PyTexturePacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 1.02 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='PyTexturePacker',
packages=find_packages(exclude=['docs', 'tests', 'test_image']),
version='1.0.0',
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.0',
keywords=['TexturePacker', 'cocos2d'],
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"],
)