Skip to content
Snippets Groups Projects
Commit 942eb449 authored by Nabywaniec's avatar Nabywaniec
Browse files

Modify setup scripts

parent 4ec84418
No related branches found
No related tags found
1 merge request!2Port silecs cli to Python
#!/usr/bin/env python
from silecs_cli import silecs
silecs.main()
import setuptools
from setuptools import setup, find_packages
from info import __version__, __description__
setuptools.setup(
name="silecs-cli",
setup(
name="opensilecs",
version=__version__,
description=__description__,
url="https://git.gsi.de/silecs/opensilecs/-/tree/master/silecs-cli-client"
url="https://git.gsi.de/silecs/opensilecs/-/tree/master/silecs-cli",
author="GSI",
license="",
packages=find_packages(),
install_requires=[
'lxml',
],
entry_points={
'console_scripts': [
'silecs-cli=silecs-cli.silecs:run'
]
},
scripts=['scripts/silecs'],
)
\ No newline at end of file
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