-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (42 loc) · 1.21 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
[build-system]
requires = ['setuptools']
[project]
name = 'bespon'
description = 'Python library for BespON'
readme = 'README.rst'
requires-python = '>= 3.7'
authors = [
{name = 'Geoffrey M. Poore', email = 'gpoore@gmail.com'}
]
license = {file = 'LICENSE.txt'}
dynamic = ['version']
keywords = [
'configuration',
'serialization',
'interchange',
]
dependencies = []
# https://pypi.python.org/pypi?:action=list_classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
[project.urls]
homepage = 'https://bespon.org/'
repository = 'http://github.com/gpoore/bespon_py'
changelog = 'https://github.com/gpoore/bespon_py/blob/master/CHANGELOG.md'
[tool.setuptools]
packages = ['bespon']
license-files = ['LICENSE*', 'CHANGELOG*']
[tool.setuptools.dynamic]
version = {attr = 'bespon.__version__'}
[tool.ruff]
line-length = 120