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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
#!/usr/bin/env python
"""
Setup script for citeproc-py
"""
import io
import os
import re
import sys
from datetime import datetime
from subprocess import Popen, PIPE
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py
from setuptools.command.develop import develop
import versioneer
PACKAGE = 'citeproc'
BASE_PATH = os.path.dirname(os.path.abspath(__file__))
PACKAGE_ABSPATH = os.path.join(BASE_PATH, PACKAGE)
VERSION_FILE = os.path.join(PACKAGE_ABSPATH, 'version.py')
# All external commands are relative to BASE_PATH
os.chdir(BASE_PATH)
def long_description():
with open(os.path.join(BASE_PATH, 'README.md'), encoding='utf-8') as readme:
result = readme.read()
result += '\n\n'
with open(os.path.join(BASE_PATH, 'CHANGELOG.md'), encoding='utf-8') as changes:
result += changes.read()
return result
CSL_SCHEMA_RNC = 'citeproc/data/schema/csl.rnc'
def convert_rnc():
import rnc2rng
filename_root, _ = os.path.splitext(CSL_SCHEMA_RNC)
root = rnc2rng.load(CSL_SCHEMA_RNC)
with io.open(filename_root + '.rng', 'w', encoding='utf-8') as rng:
rnc2rng.dump(root, rng)
class custom_build_py(build_py):
def run(self):
convert_rnc()
build_py.run(self)
class custom_develop(develop):
def run(self):
convert_rnc()
develop.run(self)
setup(
name='citeproc-py',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass({'build_py': custom_build_py, 'develop': custom_develop}),
packages=find_packages(),
package_data={PACKAGE: ['data/locales/*.xml',
'data/locales/locales.json',
'data/schema/*.rng',
'data/styles/*.csl']},
python_requires='>=3.9',
scripts=['bin/csl_unsorted'],
setup_requires=['rnc2rng>=2.6.1,!=2.6.2'],
install_requires=['lxml'],
extras_require={
'full': ['citeproc-py-styles'],
},
provides=[PACKAGE],
#test_suite='nose.collector',
author='Brecht Machiels',
author_email='brecht@mos6581.org',
description='Citations and bibliography formatter',
long_description=long_description(),
long_description_content_type='text/markdown',
url='https://github.com/brechtm/citeproc-py',
keywords='csl citation html rst bibtex xml',
license='BSD-2-Clause-Views',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Other Environment',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Legal Industry',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Documentation',
'Topic :: Printing',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
|