-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2"]
[project]
authors = [{name = "Lotrèk", email = "dimmitutto@lotrek.it"}]
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
]
dependencies = [
"requests==2.31.0",
]
description = "Yet another Mailup Python client"
dynamic = ["version"]
keywords = ["mailup", "python", "api", "client"]
license = {text = "MIT"}
name = "mailupy"
requires-python = ">= 3.6"
[project.readme]
content-type = "text/markdown"
file = "README.md"
[project.urls]
Homepage = "https://github.com/lotrekagency/mailupy"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = {namespaces = false}
[tool.distutils.bdist_wheel]
universal = true
[tool.semantic_release]
version_variables = ["setup.py:__version__", "mailupy/__init__.py:__version__",]
[tool.semantic_release.branches.master]
match = "master"
prerelease = false
[tool.semantic_release.branches."next"]
match = "next"
prerelease = true
prerelease_token = "beta"