-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (38 loc) · 1.43 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
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'meaningless'
dynamic = ['version', 'readme', 'dependencies']
authors = [
{name = 'Daniel Tran', email = 'dantran.au@gmail.com'}
]
description = 'Retrieves, processes and downloads Bible passages from Bible Gateway'
license.file = 'LICENSE.md'
keywords = ['bible', 'yaml', 'json', 'xml', 'csv', 'biblegateway']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Religion',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Religion'
]
requires-python = '>=3.9'
[project.urls]
'Homepage' = 'https://github.com/daniel-tran/meaningless'
'Documentation' = 'https://daniel-tran.github.io/meaningless'
[tool.setuptools]
# This disables module auto discovery, since some top-level folders are not supposed to be packaged
py-modules = []
packages = ['meaningless']
[tool.setuptools.dynamic]
version = {attr = 'meaningless.utilities.common.MEANINGLESS_VERSION'}
readme = {file = ['README.md', 'CHANGELOG.md'], content-type = 'text/markdown'}
dependencies = {file = ['REQUIREMENTS.txt']}