we don't need txt2rst and txt2html anymore

This commit is contained in:
Axel Kohlmeyer
2021-05-25 22:14:29 -04:00
parent d3bf00769c
commit 0f5a1178fb
3 changed files with 8 additions and 8 deletions

2
doc/utils/converters/lammpsdoc/rst_anchor_check.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
# LAMMPS Documentation Utilities
#
# Scan for duplicate anchor labels in documentation files

View File

@ -1,7 +1,7 @@
from setuptools import setup
setup(name='LAMMPS Documentation Utilities',
version='2.0.0',
version='2.0.1',
description='Utilities to convert existing LAMMPS documentation text files into ReStructured Text',
url='https://github.com/rbberger/lammps-doc-utils',
author='Richard Berger',
@ -11,8 +11,6 @@ setup(name='LAMMPS Documentation Utilities',
test_suite='nose.collector',
tests_require=['nose'],
entry_points = {
"console_scripts": ['txt2html = lammpsdoc.txt2html:main',
'txt2rst = lammpsdoc.txt2rst:main',
'rst_anchor_check = lammpsdoc.rst_anchor_check:main ']
"console_scripts": ['rst_anchor_check = lammpsdoc.rst_anchor_check:main ']
},
)