-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.48 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamic_import"
dynamic = ["version"]
authors = [{name="Ritesh"}]
requires-python = ">=3.8"
readme = {file="README.rst", content-type="text/x-rst"}
license = {file="LICENSE.txt", content-type="text"}
description = "Let Dynamic Import handle your projects(package) import needs. Enables you to dynamically(lazily) import module as needed on run-time."
classifiers = ["Topic :: Software Development",
"License :: Public Domain",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable"]
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# 6 - Mature
# 7 - Inactive
[project.urls]
Homepage = "https://github.com/YoSTEALTH/Dynamic-Import"
Issues = "https://github.com/YoSTEALTH/Dynamic-Import/issues"
[tool.setuptools]
packages = ["dynamic_import"]
[tool.setuptools.dynamic]
version = {attr="dynamic_import.__version__"}