-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (31 loc) · 1.28 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
""" exif_delete
Install by building locally with:
python setup.py install
"""
from setuptools import setup
readme = open('README.md', 'r').read()
setup(name = "exif_delete",
version = "0.9.8",
author = "John Stilley",
description = "A simple commandline tool to remove the EXIF data from image files.",
license = "GPLv3",
keywords = "tool security privacy images exif",
url = "https://github.com/john-science/exif_delete",
long_description=readme,
long_description_content_type='text/markdown',
install_requires=['pillow>=1.1.0'],
py_modules=["exif_delete"],
entry_points={'console_scripts': ['exif_delete=exif_delete:main']},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English"])