-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (35 loc) · 1 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
37
38
39
40
41
42
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
def readfile(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name="imagesort",
version="0.4.0",
packages=find_packages(),
install_requires=[
'ExifRead>=2.1',
],
include_package_data=True,
author="Børge Lanes",
author_email="[email protected]",
description=('Organize image files by date taken'),
long_description=readfile("README.rst"),
license="MIT",
keywords="media",
url="https://github.com/leinz/imagesort",
entry_points={
'console_scripts': [
'imagesort = imagesort.imagesort:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Multimedia',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)