-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.15 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
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "sqlalchemy-events"
version = "0.1.0"
description = "Helper for SQLAlchemy Events"
readme = "README.md"
homepage = "https://github.com/nsiregar/sqlalchemy-events"
repository = "https://github.com/nsiregar/sqlalchemy-events"
authors = ["Ngalim Siregar <[email protected]>"]
license = "MIT"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.8"
SQLAlchemy = "^1.4.22"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*Binary.*:sqlalchemy.exc.SADeprecationWarning",
"ignore:.*Decimal.*:sqlalchemy.exc.SAWarning",
"ignore:.*Passing `info=*:DeprecationWarning",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"