git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@14950 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
17
doc/utils/converters/setup.py
Normal file
17
doc/utils/converters/setup.py
Normal file
@ -0,0 +1,17 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(name='LAMMPS Documentation Utilities',
|
||||
version='2.0.0',
|
||||
description='Utilities to convert existing LAMMPS documentation text files into ReStructured Text',
|
||||
url='https://github.com/rbberger/lammps-doc-utils',
|
||||
author='Richard Berger',
|
||||
author_email='richard.berger@outlook.com',
|
||||
license='GPL',
|
||||
packages=['lammpsdoc'],
|
||||
test_suite='nose.collector',
|
||||
tests_require=['nose'],
|
||||
entry_points = {
|
||||
"console_scripts": ['txt2html = lammpsdoc.txt2html:main',
|
||||
'txt2rst = lammpsdoc.txt2rst:main']
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user