File size: 644 Bytes
a65138c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | from setuptools import setup, find_packages
import os.path
import os
setup_dir = os.path.dirname(__file__)
os.chdir(setup_dir)
setup(name='xsltest',
packages=find_packages(),
# TODO: lxml is required, but we omit it to make buildout process
# successful without it. This workaround should be resolved with Issue
# #101.
install_requires=['pyhwp', 'docopt'],
entry_points={
'console_scripts': [
'xsltest = xsltest:main',
'xsltest-gen = xsltest:main_gen',
'xsltest-run = xsltest:main_run',
'xmltool = xsltest.xmltool:main'
]
})
|