autoimport/setup.py

16 lines
439 B
Python
Raw Permalink Normal View History

2019-08-14 09:25:54 +00:00
from setuptools import setup, find_packages
setup(
2019-08-14 10:07:39 +00:00
name = "autoimport",
version = "0.0.1",
packages = find_packages(),
author = "Daniel Knüttel",
author_email = "daniel.knuettel@daknuett.eu",
install_requires = ["docopt", "exifread"],
description = "A script to find, order and copy images",
long_description = open("README.rst").read(),
2019-08-14 09:25:54 +00:00
2019-08-14 10:07:39 +00:00
entry_points = {"console_scripts": ["autoimport = licor"]}
)
2019-08-14 09:25:54 +00:00