- 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.
15 lines
385 B
Python
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']
|
|
)
|