-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.89 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#! /usr/bin/env python
# -*- coding: utf-8; -*-
from setuptools import setup
setup(name='bibgen',
version='0.3',
description='A citation and bibliography generator',
long_description='''Bibgen is a Python script that allows styled
citations and bibliography generation using external bibliographic
databases. It supports databases such as BibTeX, JSON or Mendeley,
and generates styled citations and bibliography sections for several
document types including DocBook and reStructuredText. Textual
citations and entries in the generated bibliographies are styled using
rules found in CSL stylesheets. Thousands of those stylesheets are
readily available, for instance through the Zotero style repository.''',
author='Émilien Tlapale',
author_email='emilien@tlapale.com',
maintainer='Émilien Tlapale',
maintainer_email='emilien@tlapale.com',
url='http://emilien.tlapale.com/code/bibgen',
license='BSD',
packages=['bibgen',
'bibgen.citeproc',
'bibgen.formatter',
],
scripts=['bin/bibgen'],
data_files= [("", ["LICENSE"])],
install_requires = ['citeproc-py >= 0.3.0'],
extras_require = {
'enhanced_bibtex': ['bibtexparser']
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: XML',
],
)