-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (49 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import kraconvert
import os
packages = [
'kraconvert',
]
entry_points = {
'console_scripts': [
'kraconvert = kraconvert.main:main',
]
}
package_data = {
'kraconvert': ['files/*.icc']
}
requires = [
'lxml', 'pillow'
]
here = os.path.dirname(os.path.abspath(__file__))
f = open(os.path.join(here, 'README.md'))
long_description = f.read().strip()
f.close()
setup(
name='kraconvert',
version=kraconvert.__version__,
description='Konverts Krita .kra files into PNG and JPEG.',
url='https://github.com/bloodywing/kraconvert',
packages=packages,
package_data=package_data,
entry_points=entry_points,
install_requires=requires,
requires=requires,
long_description=long_description,
author='Pierre Geier <bloodywing>',
author_email='[email protected]',
download_url='https://github.com/bloodywing/kraconvert/tarball/{tag}'.format(tag=kraconvert.__version__),
license='CC0',
keywords=['experimental', 'krita', 'converter', 'tool', 'utility'],
classifiers=[
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 3',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Utilities',
]
)