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.
15 lines
373 B
15 lines
373 B
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='papers',
|
|
version='1',
|
|
author='Fabien Benureau, Olivier Mangin',
|
|
author_email='fabien.benureau+inria@gmail.com',
|
|
url='',
|
|
description='research papers manager',
|
|
requires=['pybtex'],
|
|
packages = ['papers', 'papers.commands'],
|
|
scripts=['papers/papers']
|
|
)
|