forked from pyraixyz/PYRAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
108 lines (96 loc) · 2.19 KB
/
setup.cfg
File metadata and controls
108 lines (96 loc) · 2.19 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
[coverage:run]
source = engine
omit =
*/tests/*
setup.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
if __name__ == .__main__.:
pass
raise ImportError
[coverage:html]
directory = coverage_html
[metadata]
name = pyrai
version = attr: pyrai.__version__
description = Python library for AI development
long_description = file: README.md
long_description_content_type = text/markdown
author = PyRai Team
author_email = team@pyrai.xyz
url = https://github.com/pyrai/pyrai
license = MIT
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
python_requires = >=3.10
install_requires =
fastapi>=0.100.0
uvicorn>=0.23.0
sqlalchemy>=2.0.19
pydantic>=2.1.1
redis>=4.6.0
prometheus-client>=0.17.1
sentry-sdk>=1.28.1
python-jose[cryptography]>=3.3.0
passlib[bcrypt]>=1.7.4
[options.extras_require]
dev =
pytest>=7.4.0
pytest-cov>=4.1.0
pytest-asyncio>=0.21.1
black>=23.7.0
isort>=5.12.0
mypy>=1.4.1
ruff>=0.0.280
pre-commit>=3.3.3
commitizen>=3.5.3
docs =
mkdocs>=1.5.2
mkdocs-material>=9.1.21
mkdocstrings[python]>=0.22.0
mkdocs-git-revision-date-localized-plugin>=1.2.0
mkdocs-minify-plugin>=0.7.1
test =
pytest-benchmark>=4.0.0
pytest-mock>=3.11.1
pytest-xdist>=3.3.1
faker>=19.2.0
hypothesis>=6.82.6
[options.package_data]
pyrai = py.typed
[bdist_wheel]
universal = 0
[sdist]
formats = zip, gztar
[flake8]
max-line-length = 88
extend-ignore = E203
exclude = .git,__pycache__,build,dist
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[tool:pytest]
testpaths = tests
python_files = test_*.py
addopts = --cov=pyrai --cov-report=term-missing
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
check_untyped_defs = True