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

first commit

parents
No related branches found
No related tags found
1 merge request!1first commit
Pipeline #542 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