13 lines
263 B
Python
13 lines
263 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="slic",
|
|
version='0.1.2',
|
|
url="https://gitlab.psi.ch/slic/slic",
|
|
description="SwissFEL Library for Instrument Control",
|
|
author="Paul Scherrer Institute",
|
|
packages=find_packages()
|
|
)
|
|
|
|
|