-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.05 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
[build-system]
requires = ['setuptools>=64.0.0', 'build']
build-backend = 'setuptools.build_meta'
[project]
name = 'package_name'
dynamic = ['version']
description = 'description_value'
authors = [
{ name = 'author_value', email = '[email protected]' },
]
license = { text = 'GNU General Public License v3 (GPLv3)' }
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = '>=3.10'
dependencies = [
# Add your dependencies here
]
[project.urls]
Homepage = 'url_value'
[tool.setuptools.packages.find]
include = ['package_name']
[tool.setuptools.package-data]
'package_name' = ['*', '**/*', '!**/__pycache__']
[tool.setuptools.dynamic]
version = {attr = 'package_name.version.__version__'}