-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (38 loc) · 1.24 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
# -*- coding: utf-8 -*-
"""
.. codeauthor:: Daniel Seichter <[email protected]>
"""
import os
from setuptools import setup, find_packages
def run_setup():
# get version
version_namespace = {}
with open(os.path.join('nicr_multi_task_dataset',
'version.py')) as version_file:
exec(version_file.read(), version_namespace)
version = version_namespace['_get_version'](with_suffix=False)
# setup
setup(
name='nicr_multi_task_dataset',
version='{}.{}.{}'.format(*version),
description='NICR Multi-Task Dataset',
url='https://www.tu-ilmenau.de/neurob/data-sets-code/depth-multi-task/',
author='Daniel Seichter',
author_email='[email protected]',
license=('Copyright 2020, Neuroinformatics and Cognitive Robotics '
'Lab TU Ilmenau, Ilmenau, Germany'),
python_requires='>3.6.',
install_requires=[
'numpy>=1.11.1',
],
packages=find_packages(),
extras_require={
'test': [
'pytest>=3.0.2'
],
'with_opencv': [
'opencv-python==3.4.2.*'
]
})
if __name__ == '__main__':
run_setup()