Skip to content

Commit 17c23ae

Browse files
committed
feat: add pyproject.toml to configure the project + dependencies and prepared for release
1 parent 180db8f commit 17c23ae

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "pycustomrand"
7+
version = "0.0.1"
8+
authors = [
9+
{ name="Ivan", email="vanyalebedev45@gmail.com" },
10+
]
11+
description = "Библиотека для генерации псевдослучайных чисел на основе времени"
12+
readme = "README.md"
13+
requires-python = ">=3.8"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
]
19+
20+
[project.urls]
21+
"Homepage" = "https://github.com/n1xsi/PyCustomRand"
22+
"Bug Tracker" = "https://github.com/n1xsi/PyCustomRand/issues"

0 commit comments

Comments
 (0)