added setup files

This commit is contained in:
wakonig_k 2022-06-22 12:03:55 +02:00
parent b1f2332576
commit 56727286fe
8 changed files with 132 additions and 2 deletions

22
bec_client/setup.cfg Normal file
View File

@ -0,0 +1,22 @@
[metadata]
name = bec_client
version = 0.0.1
description = BEC Client
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pypa/sampleproject
project_urls =
Bug Tracker = https://github.com/pypa/sampleproject/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= .
packages = find:
python_requires = >=3.7
[options.packages.find]
where = .

14
bec_client/setup.py Normal file
View File

@ -0,0 +1,14 @@
import pathlib
import subprocess
from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/"
if __name__ == "__main__":
setup(install_requires=["numpy", "msgpack", "requests", "typeguard", "pyyaml", "redis"])
local_deps = [utils]
for dep in local_deps:
subprocess.run(f"pip install -e {dep}", shell=True, check=True)

View File

@ -1,4 +1,4 @@
from setuptools import setup
if __name__ == "__main__":
setup()
setup(install_requires=["msgpack", "requests", "typeguard", "pyyaml", "redis"])

View File

@ -1,4 +1,19 @@
import pathlib
import subprocess
from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/"
if __name__ == "__main__":
setup()
setup(
install_requires=[
"numpy",
"cytoolz",
]
)
local_deps = [utils]
for dep in local_deps:
subprocess.run(f"pip install -e {dep}", shell=True, check=True)

22
opaas/setup.cfg Normal file
View File

@ -0,0 +1,22 @@
[metadata]
name = opaas
version = 0.0.1
description = OPAAS service within the bec framework
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pypa/sampleproject
project_urls =
Bug Tracker = https://github.com/pypa/sampleproject/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= ./
packages = find:
python_requires = >=3.7
[options.packages.find]
where = ./

17
opaas/setup.py Normal file
View File

@ -0,0 +1,17 @@
import pathlib
import subprocess
from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/"
ophyd_devices = f"{current_path}/../../ophyd_devices/"
if __name__ == "__main__":
setup(install_requires=["numpy", "cytoolz", "ophyd"])
local_deps = [utils, ophyd_devices]
for dep in local_deps:
subprocess.run(f"pip install -e {dep}", shell=True, check=True)

22
scan_bundler/setup.cfg Normal file
View File

@ -0,0 +1,22 @@
[metadata]
name = scan_bundler
version = 0.0.1
description = scan_bundler service within the bec framework
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pypa/sampleproject
project_urls =
Bug Tracker = https://github.com/pypa/sampleproject/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= ./
packages = find:
python_requires = >=3.7
[options.packages.find]
where = ./

18
scan_bundler/setup.py Normal file
View File

@ -0,0 +1,18 @@
import pathlib
import subprocess
from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve()
utils = f"{current_path}/../bec_utils/"
if __name__ == "__main__":
setup(
install_requires=[
"numpy",
]
)
local_deps = [utils]
for dep in local_deps:
subprocess.run(f"pip install -e {dep}", shell=True, check=True)