-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
31 lines (29 loc) · 1.26 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ArtificialVision"
version = "0.1.4"
description = "Artificial Vision Library"
readme = "README.md"
authors = [{ name = "hwk06023", email = "hwk06023@gmail.com" }]
license = { file = "LICENSE" }
keywords = ["hwk060023", "Vision", "AI", "ML", "DL", "CV", "ArtificialVision", "ArtificialIntelligence", "MachineLearning", "DeepLearning", "ComputerVision", "Python", "PyPI", "Package", "Tutorial", "Research", "Development", "Library", "Framework", "Tool", "Utility", "Module", "Class", "Function", "Method", "Variable", "Constant", "Parameter", "Argument", "Hyperparameter", "Model", "Dataset", "Preprocessing", "Augmentation", "Training", "Validation", "Testing", "Evaluation", "Prediction", "Inference", "Analysis", "Visualization", "Benchmark", "Comparison", "Documentation", "Reference", "Paper"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
urls = { "Source" = "https://github.com/hwk06023/ArtificialVision" }
requires-python = ">=3.9"
dependencies = [
'torch',
'torchvision',
'tensorflow',
'opencv-python',
'scikit-learn',
'numpy',
'scipy',
'matplotlib',
'tqdm',
'pillow'
]