forked from lsaffre/picsel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 771 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
from setuptools import setup
SETUP_INFO = dict(
name='shotwell2blog',
version='0.0.1',
install_requires=['argh'],
scripts=['shotwell2blog.py'],
description="Export tagged photos and videos from Shotwell photo database",
license='Free BSD',
author='Luc Saffre',
author_email='[email protected]')
SETUP_INFO.update(classifiers="""\
Programming Language :: Python
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent""".splitlines())
SETUP_INFO.update(long_description=open("README.rst").read())
if __name__ == '__main__':
setup(**SETUP_INFO)