forked from fdenivac/Lightroom-SQL-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.06 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.06 KB
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="lrtools",
description="Retrieve photo data from Adobe Lightroom catalog",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fdenivac/Lightroom-SQL-tools",
version="1.0.0",
author="fedor denivac",
author_email="fdenivac@gmail.com",
license="GNU GPLv3",
keywords="lightroom sql photo",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Environment :: Console",
"Topic :: Software Development :: Libraries",
"Topic :: Multimedia :: Graphics",
],
python_requires=">=3.7",
package_dir={"lrtools": "lrtools"},
packages=["lrtools"],
scripts=["lrtools.ini", "lrselect.py", "lrsmart.py"],
install_requires=["geopy", "pytz", "tzlocal", "python-dateutil"],
)