forked from USC-IGC/ukbb_parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·27 lines (27 loc) · 843 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
try:
from setuptools import setup, find_packages
except (ImportError, ModuleNotFoundError) as e:
print("Please install setuptools and try again.\npip install setuptools")
import sys
sys.exit(1)
else:
setup(
name='ukbb_parser',
author="Alyssa H. Zhu",
description="ukbb_parser is a python-based parser for UK Biobank data",
version='0.7.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'click',
'html5lib',
'numpy>=1.13.3',
'pandas>=0.21.0'
],
entry_points={
'console_scripts': [
'ukbb_parser = ukbb_parser.scripts.cli:ukbb_parser',
'ukbb_parser_test = ukbb_parser.tests.test_installation:main'
]
}
)