-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.61 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
# Copyright (c) Free Software Foundation, Inc. All rights reserved.
# Licensed under the AGPL-3.0-only License. See LICENSE in the project root for license information.
[build-system]
requires = ['setuptools>=61.0', 'setuptools-git-versioning<2']
build-backend = 'setuptools.build_meta'
[project]
name = 'AsicVerifier'
description = 'Asic Verifier for X-Road'
readme = 'README.md'
requires-python = '>=3.8'
license = {text = 'AGPL-3.0-only'}
keywords = ['X-Road', 'security server']
authors = [{name = 'Pipin Fitriadi'}, {email = '[email protected]'}]
maintainers = [{name = 'Pipin Fitriadi'}, {email = '[email protected]'}]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Java',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Framework :: FastAPI',
'Topic :: File Formats :: JSON',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Text Processing',
'Topic :: Utilities'
]
dependencies = ['python-dotenv', 'typer[all]', 'requests', 'python-dateutil', 'importlib-metadata']
scripts = { asicverifier = 'asicverifier.__main__:cli' }
dynamic = ['version']
[project.optional-dependencies]
restful-api = ['pydantic[email]', 'fastapi', 'uvicorn[standard]']
[project.urls]
Repository = 'https://github.com/pipinfitriadi/asicverifier'
Docker = 'https://hub.docker.com/r/pipinfitriadi/asicverifier'
[tool.coverage.run]
relative_files = true
[tool.setuptools-git-versioning]
enabled = true
template = '{tag}'
dev_template = '{tag}'
dirty_template = '{tag}'