-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (35 loc) · 1.13 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
from setuptools import setup, find_packages
setup(name='limbus-components',
version='0.1.4',
description='Components to be used with limbus.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Luis Ferraz',
url='https://github.com/kornia/limbus-components',
install_requires=[
'limbus >= 0.1.6',
'torch',
'numpy',
'kornia',
'opencv-python',
'pillow',
],
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',
]
},
packages=find_packages(where='.'),
package_dir={'': '.'},
package_data={'': ['*.yml']},
include_package_data=True
)