-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (29 loc) · 1011 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
27
28
29
30
31
32
# encoding: utf-8
from distutils.core import setup
import codecs
from swatch import __version__ as VERSION
README = codecs.open('README.rst', encoding='utf-8').read()
LICENSE = codecs.open('LICENSE', encoding='utf-8').read()
setup(
name='swatch',
version=VERSION,
author='Marcos A Ojeda',
author_email='marcos@generic.cx',
url='http://github.com/nsfmc/swatch',
packages=['swatch'],
license=LICENSE,
description='a parser for adobe swatch exchange files',
long_description=README,
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)