This repository was archived by the owner on Apr 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.29 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
46
[tool.poetry]
name = "localimport"
version = "1.7.6"
description = "Isolated import of Python modules."
authors = ["Niklas Rosenstein <rosensteinniklas@gmail.com>"]
license = "MIT"
readme = "readme.md"
homepage = "https://github.com/NiklasRosenstein/localimport"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
keywords = ["import", "embedded", "modules", "packages"]
[tool.poetry.urls]
documentation = "http://niklasrosenstein.github.io/python-localimport/"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
pytest = "*"
mypy = "*"
types-setuptools = "*"
[tool.slam]
typed = true
[tool.slam.test]
pytest = "pytest tests/"
mypy = "mypy src/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"