Skip to content
Snippets Groups Projects
setup.py 654 B
Newer Older
jmcchesn's avatar
jmcchesn committed
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(
jmcchesn's avatar
jmcchesn committed
    name='iexcode',
jmcchesn's avatar
jmcchesn committed
    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=[],
rodolakis's avatar
rodolakis committed
    package_data={'': ['IEX_dictionaries/*']}
jmcchesn's avatar
jmcchesn committed

)