-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
33 lines (29 loc) · 1.16 KB
/
pyproject.toml
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>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "hackytools"
dependencies = ["numpy"]
dynamic = ["version"]
authors = [
{ name="Hackysack", email="[email protected]" },
# { name="Hackysack", email="[email protected]" },
]
description = "Various tools and utilities that are hacky in nature. And convenient, hopefully."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["hackytools"] # package names should match these glob patterns (["*"] by default)
exclude = ["experimental"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.setuptools.dynamic]
version = {attr = "hackytools.__version__"}
[project.urls]
"Homepage" = "https://github.com/h4cky54ck/hackytools"
"Bug Tracker" = "https://github.com/h4cky54ck/hackytools/issues"