Skip to content

Commit e43128e

Browse files
authored
Create pyproject.toml
1 parent 7bdd576 commit e43128e

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "percentify"
7+
version = "0.1.0"
8+
description = "A micro-library to easily calculate percentage between two numbers."
9+
authors = [{ name = "Daniel Emakkporuena", email = "danielemakporuena1@gmail.com" }]
10+
readme = "README.md"
11+
license = { text = "Apache-2.0" }
12+
requires-python = ">=3.7"
13+
classifiers = [
14+
"Programming Language :: Python :: 3",
15+
"License :: OSI Approved :: Apache Software License",
16+
"Operating System :: OS Independent",
17+
]
18+
19+
[tool.setuptools]
20+
packages = ["percentify"]

0 commit comments

Comments
 (0)