-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.01 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
name_ = 'images'
version_ = '6.0.0'
packages_ = [
'images6',
'images6.job',
'exifread',
'exifread.tags',
'exifread.tags.makernote',
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
setup(
name=name_,
version=version_,
author='Johan Egneblad',
author_email='[email protected]',
description='Image library and viewer',
license="MIT",
url='https://github.com/eblade/'+name_,
download_url=('https://github.com/eblade/%s/archive/v%s.tar.gz'
% (name_, version_)),
packages=packages_,
install_requires=[
"pillow>=2.5.1",
"cherrypy",
"flickrapi",
"lindh-jsonobject",
"lindh-jsondb",
],
classifiers=classifiers,
)