summaryrefslogtreecommitdiff
path: root/python/pyproject.toml
blob: dce5dd69d1a62e44225ad017b13bcd3a28f7b76c (plain)
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
# pyproject.toml

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "file-magic"
version = "0.4.1"
description = "Python front end for libmagic(3)"
readme = "README.md"
authors = [{ name = "Christos Zoulas", email = "christos@astron.com" }]
license = { file = "LICENSE" }
classifiers = [
    "License :: OSI Approved :: BSD License",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
]
keywords = ["file", "magic"]
dependencies = [
]
requires-python = ">=2.7"

[project.optional-dependencies]
dev = []

[project.urls]
Homepage = "https://https://darwinsys.com/file/"

[project.scripts]
realpython = "example.__main__:main"