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
385 B
15 lines
385 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=['bibtexparser'],
|
|
packages=find_packages(),
|
|
scripts=['pubs/pubs']
|
|
)
|