organize-my-photos/setup.py

25 lines
771 B
Python
Raw Normal View History

2018-08-31 09:02:28 +02:00
from setuptools import setup
setup(
name = 'Organize-my-photos',
py_modules=['organize_my_photos'],
2018-08-31 09:22:23 +02:00
version = '1.0.1',
2018-08-31 09:02:28 +02:00
python_requires='>3.6',
description = 'Terminal program that organizes and organizes the photographs in folders by year, month and day.',
author = 'Andros Fenollosa',
author_email = 'andros@fenollosa.email',
url = 'https://github.com/tanrax/organize-my-photos',
keywords = ['jpg', 'jpeg', 'sort', 'organize'],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
'Click>=6.7',
],
entry_points='''
[console_scripts]
2018-08-31 09:22:23 +02:00
organize_my_photos=organize_my_photos:organize_my_photos
2018-08-31 09:02:28 +02:00
'''
)