Skip to content
Snippets Groups Projects
Commit 69f0e081 authored by jmcchesn's avatar jmcchesn
Browse files

Merge branch 'main' of git.aps.anl.gov:29id/iexcode into main

parents fd11813d a24281c0
No related branches found
No related tags found
No related merge requests found
iexcode @ 4dbba03b
Subproject commit 4dbba03bc69c58a08a1f36571ffb4fe67597d85a
setup.py 0 → 100644
import os
from setuptools import setup, find_packages
install_requires = []
with open('requirements.txt') as reqs:
for line in reqs.readlines():
req = line.strip()
if not req or req.startswith('#'):
continue
install_requires.append(req)
setup(
name='IEX_beamline',
description='python scripts to run 29id of the APS',
url='https://github.com/xxx',
maintainer='Jessica McChesney',
maintainer_email='jmcchesn@anl.gov',
version='0.0.1',
packages=find_packages(),
install_requires=install_requires,
scripts=[],
dependency_links=[],
package_data={'': []}
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment