forked from staticshock/iphoto.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (29 loc) · 970 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='iphoto',
version='0.2.2',
description='Command line interface to iPhoto',
long_description=open("README.rst").read(),
author='Anton Backer',
author_email='olegov@gmail.com',
url='http://www.github.com/staticshock/iphoto.py',
packages=['iphoto'],
install_requires=['sqlalchemy', 'click'],
entry_points=dict(
console_scripts=['iphoto = iphoto.cli:main'],
),
license='ISC',
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
)
)