Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
setup.py 349 B
import re

from setuptools import find_packages, setup

with open("pyzebra/__init__.py") as f:
    version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)

setup(
    name="pyzebra",
    version=version,
    description="An experimental data analysis library for zebra instrument.",
    packages=find_packages(),
    license="GNU GPLv3",
)