-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (101 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
111 lines (101 loc) · 2.46 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "atelier-intelligence"
version = "1.0.0"
description = "Enterprise SaaS platform for luxury fashion houses - authentication, clienteling, and commerce"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Atelier Intelligence", email = "engineering@atelier-intelligence.com" }
]
keywords = [
"luxury",
"fashion",
"saas",
"authentication",
"blockchain",
"ai",
"clienteling",
"commerce"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"sqlalchemy>=2.0.25",
"alembic>=1.13.0",
"asyncpg>=0.29.0",
"redis>=5.0.0",
"celery>=5.3.0",
"httpx>=0.26.0",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"python-multipart>=0.0.6",
"boto3>=1.34.0",
"stripe>=7.0.0",
"web3>=6.0.0",
"pillow>=10.0.0",
"numpy>=1.26.0",
"scikit-learn>=1.4.0",
"openai>=1.10.0",
"anthropic>=0.18.0",
"langchain>=0.1.0",
"pinecone-client>=3.0.0",
"structlog>=24.1.0",
"sentry-sdk[fastapi]>=1.40.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"httpx>=0.26.0",
"mypy>=1.8.0",
"ruff>=0.2.0",
"black>=24.1.0",
"pre-commit>=3.6.0",
"faker>=22.0.0",
]
[project.scripts]
atelier = "src.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "S", "B", "C4", "DTZ", "T10", "ISC"]
ignore = ["E501", "S101"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --cov=src --cov-report=term-missing"
[tool.coverage.run]
source = ["src"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]