-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (47 loc) · 1.72 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
[tool.poetry]
name = "fordev"
version = "1.0.5"
description = "Gere e valide dados randômicos com fordev."
authors = ["Matheus Felipe <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/matheusfelipeog/fordev"
repository = "https://github.com/matheusfelipeog/fordev"
documentation = "https://fordev.readthedocs.io"
packages = [{include = "fordev"}]
keywords = [
"fordev", "4dev", "4devs", "4devs-api", "4devs-module",
"fourthdev", "python", "api", "scraping", "data-generator",
"fake-data", "fake-data-generator", "data-manipulation",
"data-validation", "random-data"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/matheusfelipeog/fordev/issues"
"Pull Requests" = "https://github.com/matheusfelipeog/fordev/pulls"
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.3"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.3"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
sphinxcontrib-napoleon = "^0.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"