-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 992 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
"""Daguerre.
A script to deal with pictures.
"""
from setuptools import setup
setup(
name='daguerre',
version='0.1.0',
description='A script to deal with pictures.',
url='https://github.com/barsanuphe/daguerre',
author='barsanuphe',
author_email='[email protected]',
license='GPLv3+',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha'
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Topic :: Multimedia :: Graphics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.4',
],
keywords='daguerre pictures exif',
packages=['daguerre'],
install_requires=['pyyaml', 'notify2', 'progressbar', 'rauth'], # ,'PIL', 'xdg'],
entry_points={
'console_scripts': [
'daguerre=daguerre:main',
],
},
)