-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
45 lines (41 loc) · 1.43 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
import importlib
from pathlib import Path
from setuptools import setup
from setuptools import find_packages
def get_ivis_version():
spec = importlib.util.spec_from_file_location(
'ivis.version', str(Path('ivis/version.py')))
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return module.VERSION
VERSION = get_ivis_version()
with open('README.md') as f:
long_description = f.read()
setup(name='ivis',
version=VERSION,
description='Artificial neural network-driven visualization of high-dimensional data using triplets.',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/beringresearch/ivis',
author='Benjamin Szubert, Ignat Drozdov',
author_email='bszubert@beringresearch.com, idrozdov@beringresearch.com',
license='Apache License, Version 2.0',
packages=find_packages(),
python_requires='>=3.5',
install_requires=[
'numpy',
'annoy>=1.15.2',
'tqdm',
'dill'
],
extras_require={
'tests': ['pytest', 'scipy'],
'visualization': ['matplotlib', 'seaborn'],
'cpu': ['tensorflow-cpu>=1.13.1,<2.16'],
'gpu': ['tensorflow>=1.13.1,<2.16']
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
zip_safe=False)