forked from gmbrandt/xwavecal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (15 loc) · 655 Bytes
/
setup.py
File metadata and controls
18 lines (15 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(name='xwavecal',
author=['G. Mirek Brandt, Curtis McCully'],
version='0.1.4',
python_requires='>=3.6',
packages=find_packages(),
package_dir={'xwavecal': 'xwavecal'},
package_data={'xwavecal': ['data/.*']},
setup_requires=['pytest-runner'],
install_requires=requirements,
tests_require=['pytest>=3.5'],
entry_points={'console_scripts': ['xwavecal_reduce_dir=xwavecal.main:run',
'xwavecal_reduce=xwavecal.main:reduce_data']})