-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 820 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 820 Bytes
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
#!/usr/bin/env python
#encoding: utf-8
from setuptools import setup
setup(name='shutter',
version='0.0.9',
description='ctypes interface for libgphoto2',
author='bitcraft',
author_email='leif.theden@gmail.com',
keywords=['gphoto', 'libgphoto2', 'capture', 'shutter'],
packages=['shutter'],
requires=['six'],
license='GPLv3',
long_description='https://github.com/bitcraft/shutter',
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 (GPLv3)',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)