|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=68"] |
3 | | -build-backend = "setuptools.backends.legacy:build" |
| 2 | +requires = ["setuptools>=68", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
4 | 4 |
|
5 | 5 | [project] |
6 | 6 | name = "chama-protocol" |
7 | 7 | version = "0.1.0" |
8 | 8 | description = "Digital infrastructure for Kenya's rotating credit associations (chamas)" |
9 | 9 | readme = "README.md" |
| 10 | +license = {text = "CC-BY-NC-ND-4.0"} |
| 11 | +authors = [ |
| 12 | + {name = "Gabriel Mahia", email = "contact@aikungfu.dev"}, |
| 13 | +] |
| 14 | +keywords = ["chama", "rosca", "kenya", "microfinance", "savings", "fintech", "africa"] |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 3 - Alpha", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Topic :: Office/Business :: Financial", |
| 22 | +] |
10 | 23 | requires-python = ">=3.10" |
11 | 24 | dependencies = [] |
12 | 25 |
|
13 | 26 | [project.optional-dependencies] |
14 | 27 | dev = ["pytest>=7", "ruff"] |
15 | 28 |
|
| 29 | +[project.urls] |
| 30 | +Homepage = "https://github.com/gabrielmahia/chama-protocol" |
| 31 | + |
16 | 32 | [tool.pytest.ini_options] |
17 | 33 | testpaths = ["tests"] |
| 34 | +addopts = "--tb=short -q" |
| 35 | + |
| 36 | +[tool.ruff] |
| 37 | +line-length = 100 |
| 38 | +target-version = "py310" |
| 39 | + |
| 40 | +[tool.ruff.lint] |
| 41 | +select = ["E", "F", "W"] |
| 42 | +ignore = ["E501"] |
0 commit comments