-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·33 lines (29 loc) · 1.07 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'psdparser',
version = '0.1',
author = 'Jeremy Bethmont',
author_email = 'jeremy.bethmont@gmail.com',
url = 'https://github.com/jerem/psdparse',
description = 'PSD parser',
long_description = open('README.txt').read(),
license = 'GPLv2',
packages = ['psdparse'],
scripts=['bin/psdparser.py'],
requires=['PyYAML', 'PIL'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: Viewers',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)