Skip to content

Commit

Permalink
Merge pull request #851 from klauer/mnt_pypi
Browse files Browse the repository at this point in the history
BLD: some pypi fixes
  • Loading branch information
ZLLentz authored Jul 14, 2021
2 parents 24a61eb + fe47f4b commit 3be84f3
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
devices/_version.py export-subst
pcdsdevices/_version.py export-subst
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
include versioneer.py
include devices/_version.py
include pcdsdevices/_version.py
include LICENSE.md
include requirements.txt
include dev-requirements.txt
include docs-requirements.txt
20 changes: 10 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
bluesky>=1.6.4
happi
ophyd>=1.2.0
bluesky>=1.2.0
periodictable
numpy
ophyd>=1.5.1
pcdscalc>=0.2.0
pcdsutils>=0.4.0
pint
pmgr>=2.0.2
pyepics
pytmc
prettytable
pyepics>=3.4.2
pytmc>=2.7.0
pyyaml
pint
scipy
schema
pcdsutils
pcdscalc
prettytable
scipy
20 changes: 14 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@

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',
name="pcdsdevices",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license='BSD',
author='SLAC National Accelerator Laboratory',
license="BSD",
author="SLAC National Accelerator Laboratory",
packages=find_packages(),
description='IOC definitions for LCLS Beamline Devices',
description="Ophyd Device definitions for LCLS Beamline components",
entry_points={
'happi.containers': ['pcdsdevices = pcdsdevices.happi.containers'],
}
"happi.containers": ["pcdsdevices = pcdsdevices.happi.containers"],
},
install_requires=install_requires,
python_requires=">=3.6",
)

0 comments on commit 3be84f3

Please sign in to comment.