-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.89 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
[project]
name = "diversity-django-london"
version = "0.1.0"
description = "A project to analyze and visualize diversity data from the Django London Meetup group using Python, Flask, and OpenAI."
authors = [{ name = "Ester Beltrami", email = "[email protected]" }]
dependencies = [
"requests>=2.31.0",
"python-dotenv>=1.0.1",
"flask>=3.0.3",
"openai>=1.21.2",
"pandas>=2.2.2",
"openpyxl>=3.1.2",
]
requires-python = "==3.12.*"
readme = "README.md"
license = { text = "MIT" }
keywords = ["django", "diversity", "meetup", "analysis", "openai", "flask"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License"
]
homepage = "https://github.com/estyxx/meetup-diversity"
repository = "https://github.com/estyxx/meetup-diversity"
documentation = "https://github.com/estyxx/meetup-diversity#readme"
[project.optional-dependencies]
linters = ["ruff>=0.2.1", "pre-commit>=3.6.1", "mypy>=1.8.0"]
[tool.pdm.scripts]
_.env_file = ".env"
ngrok = "ngrok http http://127.0.0.1:5000"
flask = "flask run -p 5000"
export = { call = "main:main" }
[tool.pdm]
distribution = false
plugins = ["sync-pre-commit-lock"]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
[tool.mypy]
python_version = "3.12"
check_untyped_defs = true
ignore_missing_imports = true
disallow_untyped_defs = true
warn_unused_ignores = true
warn_return_any = true