14 lines
319 B
Python
14 lines
319 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="sanipy",
|
|
version="0.0.2",
|
|
url="https://gitlab.psi.ch/augustin_s/sanipy",
|
|
description="A command-line tool for epics connection testing",
|
|
author="Paul Scherrer Institute",
|
|
packages=find_packages(),
|
|
py_modules=["sani", "commands"]
|
|
)
|
|
|
|
|