-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
138 lines (106 loc) · 2.68 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
[tool.poetry]
name = "pomace"
version = "0.12.10"
description = "Dynamic page objects for browser automation."
license = "MIT"
authors = ["Jace Browning <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/pomace"
documentation = "https://pomace.readthedocs.io"
repository = "https://github.com/jacebrowning/pomace"
keywords = [
"browser automation",
"page object model",
"selenium",
"splinter",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = "^3.9"
# Interface
cleo = "^2.0"
bullet = "^2.2"
ipdb = "~0.13.9"
ipython = "^8.4"
flask-api = "^3.0"
werkzeug = "<3" # newer flask-api dependency does not work with Python 3.13+
universal-startfile = "*"
# Automation
playwright = { version = "^1.48", markers = "platform_machine != 'armv7l'" }
selenium = "^4.25"
splinter = "^0.21"
webdriver_manager = "^4.0.2"
# Persistence
datafiles = "^2.3"
gitman = "^3.5.2"
parse = "^1.14"
# Data
faker = ">=22"
zipcodes = "^1.2"
us = "^3.1.1"
# Utilities
fake-useragent = "^1.3"
beautifulsoup4 = "^4.8.2"
inflection = "^0.5.1"
minilog = "^2.3"
nest-asyncio = "^1.5.5"
[tool.poetry.dev-dependencies]
# Formatters
black = "^24.3"
isort = "^5.10"
# Linters
mypy = "^1.3"
types-requests = "*"
pydocstyle = "*"
pylint = "~3.3"
# Testing
pytest = "^7.3"
pytest-cov = "^4.1"
pytest-describe = "^2.1"
pytest-expecter = "^3.0"
pytest-mock = "^2.0"
pytest-vcr = "^1.0.2"
pytest-random = "*"
freezegun = "*"
# Reports
coveragespace = "^6.1"
# Documentation
mkdocs = "~1.4"
pygments = "^2.15"
# Tooling
pyinstaller = "*"
sniffer = "*"
macfsevents = { version = "*", platform = "darwin", markers = "python_version < '3.13'" }
pync = { version = "*", platform = "darwin" }
rope = "*"
[tool.poetry.scripts]
pomace = "pomace.cli:application.run"
[tool.black]
quiet = "true"
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true
cache_dir = ".cache/mypy/"
plugins = "datafiles.plugins:mypy"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"