-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (50 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
65 lines (50 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "graphfaker"
version = "0.3.0"
description = "an open-source python library for generating, and loading both synthetic and real-world graph datasets"
readme = "README.md"
authors = [
{name = "Dennis Irorere", email = "denironyx@gmail.com"}
]
maintainers = [
{name = "Dennis Irorere", email = "denironyx@gmail.com"}
]
classifiers = [
]
license = "MIT"
keywords = ["faker", "graph-data", "flights", "osmnx", "graphs", "graphfaker"]
dependencies = [
"faker>=37.1.0",
"networkx>=3.4.2",
"osmnx==2.0.2",
"pandas>=2.2.2",
"requests>=2.32.3",
"typer",
"wikipedia>=1.4.0",
]
[project.optional-dependencies]
dev = [
"coverage", # testing
"mypy", # linting
"pytest", # testing
"ruff" # linting
]
[project.urls]
bugs = "https://github.com/graphgeeks-lab/graphfaker/issues"
changelog = "https://github.com/graphgeeks-lab/graphfaker/blob/master/changelog.md"
homepage = "https://github.com/graphgeeks-lab/graphfaker/"
[tool.setuptools]
package-dir = {"graphfaker" = "graphfaker"}
[tool.setuptools.package-data]
"*" = ["*.*"]
# Mypy
# ----
[tool.mypy]
files = "."
# Use strict defaults
strict = true
warn_unreachable = true
warn_no_return = true