Merge pull request #13 from sciunto/setup

add a setup.py
This commit is contained in:
Lucas Verney 2014-07-12 01:26:54 +02:00
commit 818b811e24
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'],
)