forked from AllenInstitute/argschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (16 loc) · 768 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
with open('test_requirements.txt','r') as f:
test_required = f.read().splitlines()
setup(name='argschema',
version='1.15.17',
description=' a wrapper for setting up modules that can have parameters specified by command line arguments,\
json_files, or dictionary objects. Providing a common wrapper for data processing modules.',
author='Forrest Collman,David Feng',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/AllenInstitute/argschema',
install_requires=required,
setup_requires=['pytest-runner'],
tests_require=test_required)