-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.2 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
[tool.poetry]
name = "autoload-module"
version = "2.0.0"
description = "Python Autoload Module"
authors = ["Hiroki Miyaji <[email protected]>"]
license = "MIT"
maintainers = ["Hiroki Miyaji <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/hiroki0525/autoload_module"
repository = "https://github.com/hiroki0525/autoload_module"
documentation = "https://github.com/hiroki0525/autoload_module"
keywords = ["python", "import", "autoload", "autoload_module", "metaprogramming", "dynamic import"]
classifiers = [
'Topic :: Software Development :: Libraries',
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
packages = [
{ include = "autoload" },
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pre-commit = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
select = ["ALL"]