|
|
|
@ -1,29 +1,31 @@
|
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
VERSION = '0.7.0'
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = 'pubs',
|
|
|
|
|
version = VERSION,
|
|
|
|
|
author = 'Fabien Benureau, Olivier Mangin, Jonathan Grizou',
|
|
|
|
|
author_email = 'fabien.benureau@gmail.com',
|
|
|
|
|
maintainer = 'Olivier Mangin',
|
|
|
|
|
url = 'https://github.com/pubs/pubs',
|
|
|
|
|
|
|
|
|
|
description = 'command-line scientific bibliography manager',
|
|
|
|
|
packages = ['pubs', 'pubs.config',
|
|
|
|
|
name='pubs',
|
|
|
|
|
version=VERSION,
|
|
|
|
|
author='Fabien Benureau, Olivier Mangin, Jonathan Grizou',
|
|
|
|
|
author_email='fabien.benureau@gmail.com',
|
|
|
|
|
maintainer='Olivier Mangin',
|
|
|
|
|
url='https://github.com/pubs/pubs',
|
|
|
|
|
|
|
|
|
|
description='command-line scientific bibliography manager',
|
|
|
|
|
packages=['pubs',
|
|
|
|
|
'pubs.config',
|
|
|
|
|
'pubs.commands',
|
|
|
|
|
'pubs.templates',
|
|
|
|
|
'pubs.plugs', 'pubs.plugs.alias'],
|
|
|
|
|
scripts = ['pubs/pubs'],
|
|
|
|
|
'pubs.plugs',
|
|
|
|
|
'pubs.plugs.alias'],
|
|
|
|
|
scripts=['pubs/pubs'],
|
|
|
|
|
|
|
|
|
|
install_requires = ['pyyaml', 'bibtexparser', 'python-dateutil', 'requests',
|
|
|
|
|
install_requires=['pyyaml', 'bibtexparser', 'python-dateutil', 'requests',
|
|
|
|
|
'configobj',
|
|
|
|
|
'beautifulsoup4'], # to be made optional?
|
|
|
|
|
tests_require = ['pyfakefs>=2.7'],
|
|
|
|
|
extra_require = {'autocompletion': ['argcomplete'],
|
|
|
|
|
tests_require=['pyfakefs>=2.7'],
|
|
|
|
|
extras_require={'autocompletion': ['argcomplete'],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
classifiers=[
|
|
|
|
|