blob: 6b33b2d0b020fb06c03861a45c2f9d7108fd4409 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import sys, os
from distutils.core import setup
scripts_dir = 'scripts'
if sys.version_info < (3,):
sys.stderr.write('Sorry, but you must have Python version 3.0 or later\n')
sys.exit(1)
setup(name='rst',
version='.6',
description='Adds functionality to Docutils XML',
author='Paul Tremblay',
# author_email='',
# url='http://www.python.org/sigs/distutils-sig/',
# packages=['distutils', 'distutils.command'],
scripts = [os.path.join(scripts_dir, 'rstxml2xml.py')],
)
# nothing
|