Navigation Menu

Skip to content

Commit

Permalink
add setup script to distribute/install fido
Browse files Browse the repository at this point in the history
so it is installable
  • Loading branch information
dwilson committed Aug 17, 2012
1 parent b4c5e8f commit ded1772
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
recursive-include fido *.*
16 changes: 16 additions & 0 deletions setup.py
@@ -0,0 +1,16 @@
import sys
from setuptools import setup

# attempt automatic python2 to python3 conversion if using python3
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True

setup( name='fido',
version='1.1.1',
install_requires=['distribute'],
description='Format Identification for Digital Objects (FIDO)',
packages=['fido'],
package_data={'fido':['*.*', 'conf/*.*']},
entry_points={'console_scripts':['fido = fido.fido:main']},
**extra )

0 comments on commit ded1772

Please sign in to comment.