diff --git a/.travis.yml b/.travis.yml index 83cfeda..85fa9ba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..bccdaad --- /dev/null +++ b/setup.py @@ -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'], +)