forked from wo1fsea/PyTexturePacker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 1022 Bytes
/
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='0.0.1',
description='an package to create sprite sheets or sprite atlases',
author='Quanyong Huang',
author_email='quanyongh@foxmail.com',
url='https://github.com/wo1fsea/PyTexturePacker',
download_url='https://github.com/wo1fsea/PyTexturePacker',
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"],
)