Skip to content
Snippets Groups Projects
Verified Commit 92ebfa68 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

setup.py: Expose the 2 cli entrypoints and avoid the clash names

parent ce40f373
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
# Use: ./swh-deposit --help
#
# Documentation: https://docs.softwareheritage.org/devel/swh-deposit/getting-started.html
python3 -m swh.deposit.client.cli $@
......@@ -44,13 +44,17 @@ setup(
author_email='swh-devel@inria.fr',
url='https://forge.softwareheritage.org/source/swh-deposit/',
packages=find_packages(),
scripts=['bin/swh-deposit'], # scripts to package
install_requires=parse_requirements() + parse_requirements('swh'),
tests_require=parse_requirements('test'),
setup_requires=['vcversioner'],
extras_require={'testing': parse_requirements('test')},
vcversioner={},
include_package_data=True,
entry_points='''
[console_scripts]
swh-deposit=swh.deposit.cli:main
swh-deposit-client=swh.deposit.client.cli:main
''',
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment