File: setup.py

package info (click to toggle)
flickrfs 1.3.9.1-9.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 200 kB
  • sloc: python: 1,488; makefile: 10; sh: 5
file content (25 lines) | stat: -rw-r--r-- 848 bytes parent folder | download | duplicates (3)
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
######################################################################
##
## Copyright (C) 2006,  Varun Hiremath <varunhiremath@gmail.com>
##
## Filename:      setup.py
## Author:        Varun Hiremath <varunhiremath@gmail.com>
## Description:   Installation script
## License:       GPL
######################################################################

import os, sys
from distutils.core import setup

PROGRAM_NAME = "flickrfs"
PROGRAM_VERSION = "1.3.9"
PROGRAM_URL = "http://manishrjain.googlepages.com/flickrfs"

setup(name='%s' % (PROGRAM_NAME).lower(),
      version='%s' % (PROGRAM_VERSION),
      description="virtual filesystem for flickr online photosharing service",
      author="Manish Rai Jain",
      license='GPL-2',
      url="%s" % (PROGRAM_URL),
      author_email=" <manishrjain@gmail.com>",
      packages = ['flickrfs'])