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

Merge branch 'master' into 'main'

first commit

See merge request !1
parents 4dbba03b f5c3570b
No related branches found
No related tags found
1 merge request!1first commit
Pipeline #543 failed
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