-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (35 loc) · 1020 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="exif2pandas",
version="2.1",
description="Extract EXIF to pandas / SQL / Excel / Feather",
long_description=long_description,
long_description_content_type="text/markdown",
author="Visgean",
author_email="[email protected]",
url="https://github.com/visgean/exif2pandas",
packages=[
"exif2pandas",
],
package_dir={"exif2pandas": "exif2pandas"},
license="MIT",
keywords="exif sql",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
install_requires=[
"exifread==2.3.2",
"pandas",
"python-slugify",
],
entry_points={"console_scripts": ["exif2pandas = exif2pandas.main:main"]},
)