Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 1.6 KB

You have to be logged in to leave a comment. Sign In
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  1. [build-system]
  2. requires = ["setuptools>=42", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "networksecurity"
  6. version = "0.0.1"
  7. description = "Network Security Classification Project with DVC and MLflow"
  8. readme = "README.md"
  9. authors = [
  10. {name = "Augustine Chibueze", email = "chibuezeaugustine23@gmail.com"}
  11. ]
  12. license = {text = "MIT"}
  13. requires-python = ">=3.8"
  14. classifiers = [
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: OS Independent",
  18. ]
  19. dependencies = [
  20. "python-dotenv",
  21. "pandas",
  22. "numpy",
  23. "pymongo",
  24. "certifi",
  25. "pymongo[srv]==3.6",
  26. "scikit-learn",
  27. "dill",
  28. "pyaml",
  29. "xgboost",
  30. "imbalanced-learn",
  31. "dask",
  32. "pyarrow",
  33. "dvc",
  34. "dvc-s3",
  35. "dvc-gdrive",
  36. "mlflow>=2.3.0",
  37. "dagshub",
  38. "pytest",
  39. "pytest-cov",
  40. "fastapi>=0.95.0",
  41. "uvicorn>=0.22.0",
  42. "pydantic>=1.10.7",
  43. "starlette>=0.26.1",
  44. "python-multipart"
  45. ]
  46. [project.urls]
  47. "Homepage" = "https://github.com/austinLorenzMccoy/networkSecurity_project"
  48. "Bug Tracker" = "https://github.com/austinLorenzMccoy/networkSecurity_project/issues"
  49. [tool.pytest.ini_options]
  50. testpaths = ["tests"]
  51. python_files = "test_*.py"
  52. python_classes = "Test*"
  53. python_functions = "test_*"
  54. addopts = "--cov=networksecurity --cov-report=xml --cov-report=term-missing"
  55. [tool.black]
  56. line-length = 88
  57. target-version = ["py38", "py39", "py310", "py311", "py312"]
  58. [tool.isort]
  59. profile = "black"
  60. line_length = 88
  61. [tool.mypy]
  62. python_version = "3.8"
  63. warn_return_any = true
  64. warn_unused_configs = true
  65. disallow_untyped_defs = true
  66. disallow_incomplete_defs = true
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...