-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (55 loc) · 1.84 KB
/
Copy pathsetup.py
File metadata and controls
66 lines (55 loc) · 1.84 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import sys
from pathlib import Path
from setuptools import find_packages, setup
CURRENT_DIRECTORY = Path(__file__).parent.absolute()
CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 10)
VER_ERR_MSG = """
==========================
Unsupported Python version
==========================
This version of ibllib requires Python {}.{}, but you're trying to
install it on Python {}.{}.
"""
if CURRENT_PYTHON < REQUIRED_PYTHON:
sys.stderr.write(VER_ERR_MSG.format(*REQUIRED_PYTHON + CURRENT_PYTHON))
sys.exit(1)
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt') as f:
require = [x.strip() for x in f.readlines() if not x.startswith('git+')]
def read(rel_path):
here = Path(__file__).parent.absolute()
with open(here.joinpath(rel_path), 'r') as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError('Unable to find version string.')
setup(
name='ibllib',
version=get_version(Path('ibllib').joinpath('__init__.py')),
python_requires='>={}.{}'.format(*REQUIRED_PYTHON),
description='IBL libraries',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
author='IBL Staff',
url='https://www.internationalbrainlab.com/',
packages=find_packages(exclude=['scratch']), # same as name
include_package_data=True,
# external packages as dependencies
install_requires=require,
entry_points={
'console_scripts': [
'task_qc = ibllib.qc.task_qc_viewer.task_qc:qc_gui_cli',
],
},
extras_require={
'wfield': ['wfield==0.3.7', 'labcams'],
},
scripts=[],
)