-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
45 lines (43 loc) · 1.46 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
# -*- coding:utf-8 -*-
try:
from setuptools import setup
import wheel
except ImportError:
from distutils.core import setup
kw = {}
f = open("VERSION", "r")
long_description = open("README.md", "r")
kw.update(**{
"version": f.read().strip(),
"name": "Tyf",
"keywords": [
"ifd", "tiff", "jpeg", "exif", "gps", "geotiff", "PIL", "Pillow", "xmp"
],
"author": "Bruno THOORENS",
"author_email": "moustikitos@gmail.com",
"maintainer": "Bruno THOORENS",
"maintainer_email": "moustikitos@gmail.com",
"url": "https://github.com/Moustikitos/Tyf",
"download_url": "https://github.com/Moustikitos/tyf/archive/master.zip",
"description": "Pythonic way to read and edit IFD and EXIF tags.",
"long_description": long_description.read(),
"long_description_content_type": "text/markdown",
"include_package_data": True,
"packages": ["Tyf"],
"license": "Copyright 2015-2020, THOORENS Bruno, BSD licence",
"classifiers": [
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics',
],
})
long_description.close()
f.close()
setup(**kw)