mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-06-16 16:27:13 +02:00
feat: added dev install to setup.py
This commit is contained in:
18
setup.cfg
18
setup.cfg
@ -1,22 +1,24 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = ophyd_devices
|
name = ophyd_devices
|
||||||
version = 0.0.1
|
|
||||||
description = Custom device implementations based on the ophyd hardware abstraction layer
|
description = Custom device implementations based on the ophyd hardware abstraction layer
|
||||||
long_description = file: README.md
|
long_description = file: README.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
url = https://github.com/pypa/sampleproject
|
url = https://gitlab.psi.ch/bec/ophyd_devices
|
||||||
project_urls =
|
project_urls =
|
||||||
Bug Tracker = https://github.com/pypa/sampleproject/issues
|
Bug Tracker = https://gitlab.psi.ch/bec/ophyd_devices/issues
|
||||||
classifiers =
|
classifiers =
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
License :: OSI Approved :: MIT License
|
Development Status :: 3 - Alpha
|
||||||
Operating System :: OS Independent
|
Topic :: Scientific/Engineering
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
package_dir =
|
package_dir =
|
||||||
= ./
|
= .
|
||||||
packages = find:
|
packages = find:
|
||||||
python_requires = >=3.7
|
python_requires = >=3.8
|
||||||
|
|
||||||
[options.packages.find]
|
[options.packages.find]
|
||||||
where = ./
|
where = .
|
||||||
|
|
||||||
|
[semantic_release]
|
||||||
|
version_variable = setup.py:__version__
|
8
setup.py
8
setup.py
@ -1,4 +1,10 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
__version__ = "0.0.1"
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
setup(install_requires=["ophyd", "typeguard", "prettytable", "pytest"])
|
setup(
|
||||||
|
install_requires=["ophyd", "typeguard", "prettytable", "bec_lib"],
|
||||||
|
extras_require={"dev": ["pytest", "pytest-random-order"]},
|
||||||
|
version=__version__,
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user