-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·41 lines (37 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
30
31
32
33
34
35
36
37
38
39
40
41
#! /usr/bin/env python
# encoding: UTF-8
from setuptools import setup
long_description = ''.join(list(open('README.txt'))[3:])
setup(
name='texturepacker',
version='0.12',
description='Assemble texture packs for Minecraft',
long_description=long_description,
author='Damian Cugley',
author_email='pdc@alleged.org.uk',
url = 'http://pdc.github.com/texturepacker/',
install_requires=[
'PIL>=1.1.7',
'PyYAML>=3.0.9',
'httplib2>=0.6.0',
],
tests_require=[
'mock>=0.7.0b4',
'nose>=1.0.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Zope3',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Topic :: Games/Entertainment',
'Topic :: Utilities',
],
package_dir = {'':'src'},
packages = ['texturepacker'],
scripts=['script/maketexture'],
# The sample images & recipes are not included in a binary distribution.
)