-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1.32 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
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = [
'hatchling',
]
build-backend = 'hatchling.build'
[project]
name = 'nfsn-ddns'
description = 'NearlyFreeSpeech.net Dynamic DNS Utility'
requires-python = '>=3.9'
readme = 'README.md'
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Utilities',
]
dependencies = [
'requests>=2.30.0',
'pyyaml',
]
dynamic = [
'version',
]
[project.urls]
Download = 'https://pypi.python.org/pypi/nfsn-ddns'
Source = 'https://github.com/jdknight/nfsn-ddns'
[project.scripts]
nfsn-ddns = 'nfsn_ddns.__main__:main'
[tool.flit.module]
name = 'nfsn_ddns'
[tool.hatch.build.targets.sdist]
include = [
'nfsn_ddns',
'nfsn-ddns',
'tests',
]
[tool.hatch.build.targets.wheel]
packages = [
'nfsn_ddns',
'nfsn-ddns',
]
[tool.hatch.version]
path = 'nfsn_ddns/__init__.py'