-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
53 lines (47 loc) · 1.19 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
46
47
48
49
50
51
52
53
from distutils.core import setup
VERSION = '1.1.0'
# add the README.md file to the long_description
with open('README.md', 'r') as fh:
long_description = fh.read()
install_requires = [
'ipykernel',
'jupyter',
'matplotlib',
'numpy<2.0.0', # compatability issues w/ pandas as of June 2024
'opencv-python-headless',
'pandas',
'pytest',
'pyyaml',
'scikit-learn',
'scipy>=1.2.0',
'seaborn',
'tables',
'test-tube',
'torch',
'tqdm',
'typeguard',
]
extras_require = {
'dev': {
'flake8',
'sphinx',
'sphinx_rtd_theme',
'sphinx-rtd-dark-mode',
'sphinx-automodapi',
'sphinx-copybutton',
}
}
setup(
name='daart',
packages=['daart'],
version=VERSION,
description='a collection of action segmentation tools for analyzing behavioral data',
long_description=long_description,
long_description_content_type="text/markdown",
author='matt whiteway',
author_email='',
url='http://www.github.com/themattinthehatt/daart',
install_requires=install_requires,
extras_require=extras_require,
keywords=['machine learning', 'action segmentation', 'computer vision'],
)