-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 848 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
######################################################################
##
## Copyright (C) 2006, Varun Hiremath <[email protected]>
##
## Filename: setup.py
## Author: Varun Hiremath <[email protected]>
## 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),
packages = ['flickrfs'])