add a setup.py

This commit is contained in:
François Boulogne 2014-07-11 19:22:00 -04:00
parent 0742f3f4c0
commit df4c929ef8
2 changed files with 16 additions and 1 deletions

View File

@ -14,7 +14,7 @@ install:
- pip install coveralls
- sudo apt-get install -qq poppler-utils
- sudo apt-get install -qq djvulibre-bin
# - python setup.py install
- python setup.py install
# command to run tests, e.g. python setup.py test
script:
- nosetests

15
setup.py Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'BMC',
version = "0.2dev",
url = "https://github.com/Phyks/BMC",
author = "",
license = "no-alcohol beer-ware license",
author_email = "",
description = "simple script to download and store your articles",
packages = ['libbmc'],
scripts = ['bmc.py'],
)