-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 989 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'bripipetools',
'version': '0.7.0',
'description': 'Software for managing BRI bioinformatics pipelines',
'author': 'James A. Eddy, Scott Presnell, Mario Rosasco',
'author_email': '[email protected]',
'url': 'https://github.com/BenaroyaResearch/bripipetools',
'license': 'MIT',
'packages': ['bripipetools'],
'package_data': {
'bripipetools': [
'config/default.ini',
'config/logging_config.ini',
'data/*'
]
},
'install_requires': [
'Click',
'beautifulsoup4',
'pymongo',
'pandas'
],
'entry_points': {
'console_scripts': 'bripipetools = bripipetools.__main__:main'
},
'setup_requires': ['pytest-runner'],
'tests_require': ['pytest', 'pytest-cov', 'mock', 'mongomock'],
'zip_safe': False
}
setup(**config)