-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (42 loc) · 1.12 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
"""Define setup for installing the repository as a pip package."""
from setuptools import find_packages, setup
setup(
name="ikshana",
packages=find_packages(),
version="0.1.1",
description="Python package for computer vision",
author="ikshana.ai",
license="MIT",
url="https://github.com/ikshana-ai/ikshana",
install_requires=[
"click==7.1.2",
"Sphinx==4.0.2",
"torch==1.9.0",
"torchvision==0.10.0",
"torchaudio==0.9.0",
"torchsummary==1.5.1",
"tqdm==4.61.0",
"matplotlib==3.4.2",
"numpy==1.20.3",
"pandas==1.2.4",
"hiddenlayer==0.3",
"seaborn==0.11.1",
"torchsummary==1.5.1",
"imgaug==0.4.0",
"albumentations==1.0.0",
"python-dotenv>=0.5.1",
],
extras_require={
"dev": [
"black==21.6b0",
"pylint==2.8.3",
"pydocstyle==6.1.1",
"mypy==0.902",
"pre-commit==2.13.0",
"isort==5.8.0",
"jupyter==1.0.0",
"notebook==6.4.0",
"jupyterlab==3.0.16",
],
},
)