-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.27 KB
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
34
35
36
37
38
39
40
# To upload to PyPI, install python-build and twine, then:
# python -m build
# twine upload dist/*
# rm -rf build dist *.egg-info src/*.egg-info
# Once pixi allows global tasks, we can automate this there.
# If you have ~/.pypirc, you can do this without manually entering the PyPI API token every time (keep .pypirc secure though).
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "matej-libs"
version = "0.12.3"
authors = [{name = "Matej Vitek", email = "matej.vitek.business@gmail.com"}]
requires-python = ">=3.12"
dependencies = ["numpy"]
description = "Collection of Python utility libraries."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
]
[tool.setuptools] #TODO: This is needed until they fix twine packaging and uploading.
license-files = [] # Try removing on next build.
[project.optional-dependencies]
web = ["requests"]
config = ["ruamel.yaml"]
parallel = ["joblib"]
[project.scripts]
send-email = "scripts.send_email:main"
[project.urls]
Homepage = "https://github.com/MatejVitek/Python-Libraries"