-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1011 Bytes
/
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
[project]
name = "commons-api"
version = "0.0.0"
requires-python = ">= 3.11"
authors = [{ name = 'Code for Africa', email = '[email protected]' }]
readme = "README.md"
keywords = ["api", "commons", "civictech", "trolltracker"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
]
[project.urls]
Repository = "https://github.com/CodeForAfrica/api"
Issues = "https://github.com/CodeForAfrica/api/issues"
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
# TODO(kilemensi): mypy django stubs
[tool.setuptools_scm]
write_to = "VERSION"