File: setup.py

package info (click to toggle)
piggyphoto 0.1dev-git20141014
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 200 kB
  • ctags: 1,696
  • sloc: python: 1,925; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 446 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python2.7
import os
from setuptools import setup

import piggyphoto

setup(
    name="piggyphoto",
    version=piggyphoto.__version__,
    author="Alex Dumitrache",
    author_email="alexdu@easynet.ro",
    url="https://github.com/alexdu/piggyphoto",
    description="Python bindings for libgphoto2 (http://www.gphoto.org/)",
    license="MIT",
    keywords=[
        "gphoto",
    ],
    packages=[
        "piggyphoto",
    ],
)