forked from pcdshub/pcdsdevices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 777 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import find_packages, setup
import versioneer
with open("requirements.txt", "rt") as fp:
install_requires = [
line for line in fp.read().splitlines()
if line and not line.startswith("#")
]
setup(
name="pcdsdevices",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="BSD",
author="SLAC National Accelerator Laboratory",
packages=find_packages(),
include_package_data=True,
description="Ophyd Device definitions for LCLS Beamline components",
entry_points={
"happi.containers": ["pcdsdevices = pcdsdevices.happi.containers"],
"typhos.ui": ["pcdsdevices = pcdsdevices.ui:path"],
},
install_requires=install_requires,
python_requires=">=3.9",
)