pubs/setup.py
Olivier Mangin 91b3fc75bb Several bug fixes.
- edit command fails correctly on unknown citekey,
- init command and filebroker use content module to check paths,
- fix wrong docfile in testrepo,
- list command does not fail on None added date (unknown add dates are
  older than everything else). Also adds relevant test.
2014-04-18 12:58:12 +02:00

15 lines
385 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='pubs',
version='4',
author='Fabien Benureau, Olivier Mangin, Jonathan Grizou',
author_email='fabien.benureau+inria@gmail.com',
url='',
description='research papers manager',
requires=['bibtexparser'],
packages=find_packages(),
scripts=['pubs/pubs']
)