-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.08 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
[project]
name = 'Late'
dynamic = ['version']
authors = [
{name = 'Juancarlo Añez', email = '[email protected]'},
]
description = 'Late allows for late binding of default arguments'
readme = 'README.md'
requires-python = '>=3.11'
keywords = []
license = {file = 'LICENSE'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries',
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/neogeny/late"
[build-system]
requires = ['setuptools>=46.4', 'wheel']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = 'late._version.__version__'}
[tool.setuptools.packages.find]
include = ['late*', 'test*']