Add setup.py
This commit is contained in:
parent
f88ad06221
commit
a59b625f22
14
setup.py
Normal file
14
setup.py
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
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",
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user