forked from int-brain-lab/ibllib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.27 KB
/
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
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import sys
from pathlib import Path
CURRENT_DIRECTORY = Path(__file__).parent.absolute()
CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 6)
if CURRENT_PYTHON < REQUIRED_PYTHON:
sys.stderr.write("""
==========================
Unsupported Python version
==========================
This version of idtrackerai requires Python {}.{}, but you're trying to
install it on Python {}.{}.
""".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+')]
setup(
name='ibllib',
version='1.4.14',
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': [
'onelight=oneibl.onelight:one',
],
},
scripts={},
)