-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (40 loc) · 1.25 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
from setuptools import setup, find_packages
setup(name='limbus',
version='0.1.6',
description='High level interface to create Pytorch Graphs.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Luis Ferraz',
url='https://github.com/kornia/limbus',
install_requires=[
'typeguard<3.0.0',
],
extras_require={
'dev': [
'pytest',
'pytest-flake8',
'pytest-cov',
'pytest-mypy',
'pytest-pydocstyle',
'pytest-asyncio',
'mypy', # TODO: check if we can remove the deps without pytest-*
'pydocstyle',
'flake8<5.0.0', # last versions of flake8 are not compatible with pytest-flake8==1.1.1 (lastest version)
'pep8-naming',
],
'components': [
'limbus-components'
],
'widgets': [
'kornia',
'torch',
'numpy',
'visdom',
'opencv-python',
]
},
packages=find_packages(where='.'),
package_dir={'': '.'},
package_data={'': ['*.yml']},
include_package_data=True
)