Files
sanipy/setup.py
2020-11-04 15:37:20 +01:00

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"]
)