-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.21 KB
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
# pyproject.toml
[build-system]
requires = [
"setuptools>=61.0", # support PEP 621
"wheel" # support wheel
]
build-backend = "setuptools.build_meta"
[project]
name = "importpy"
version = "0.1.2"
description = """
Dynamic, lazy-style support module/package importer for Python. This small package is used to import at module/package level.
Import individual .py files at module level, replicate standard package import semantics
(including automatic __init__.py execution), and resolve relative-import issues
in nested directories without touching sys.path.
"""
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
authors = [
{ name = "14mhz", email = "14mhz@hanmail.net" }
]
keywords = ["import", "package", "dynamic", "lazy", "module"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Home = "https://github.com/waveware4ai/importpy"
Source = "https://github.com/waveware4ai/importpy"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"flake8",
]