aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 9ef21d86de4fc1bfc337bdb075bff5de0fca39d9 (plain) (blame)
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "match_up"
dynamic = ["version"]
authors = [
  { name="Karan Jayachandra", email="mail@karanjayachandra.com" },
]
description = "A small web application for matchmaking"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://gitlab.com/KaranJayachandra/match_up"
Issues = "https://gitlab.com/KaranJayachandra/match_up/-/issues"


[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
"*" = ["*.txt"]
mypkg1 = ["data1.rst"]

[project.scripts]
match_up = "match_up:main"