You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
409 B

#!/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=['pyyaml', 'bibtexparser', 'dateutil'],
packages=find_packages(),
scripts=['pubs/pubs'],
)