-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
103 lines (81 loc) · 3.4 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "Doug Hellmann", email = "[email protected]"},
{name = "Jason Myers", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Intended Audience :: Developers",
"Environment :: Console",
]
name = "virtualenvwrapper"
description = ""
dynamic = ["version"]
keywords = ["virtualenv"]
license = {text = "MIT"}
readme = "README.txt"
requires-python = ">=3.8"
dependencies = [
"virtualenv",
"virtualenv-clone",
"stevedore",
]
[project.optional-dependencies]
linter = [
"flake8",
]
build = [
"build",
"twine",
"check-python-versions",
]
# https://github.com/pypa/setuptools_scm/
[tool.setuptools_scm]
write_to = "virtualenvwrapper/version.py"
[project.urls]
homepage = "https://virtualenvwrapper.readthedocs.io/"
repository = "https://github.com/python-virtualenvwrapper/virtualenvwrapper"
[project.entry-points."virtualenvwrapper.initialize"]
user_scripts = "virtualenvwrapper.user_scripts:initialize"
project = "virtualenvwrapper.project:initialize"
[project.entry-points."virtualenvwrapper.initialize_source"]
user_scripts = "virtualenvwrapper.user_scripts:initialize_source"
[project.entry-points."virtualenvwrapper.pre_mkvirtualenv"]
user_scripts = "virtualenvwrapper.user_scripts:pre_mkvirtualenv"
[project.entry-points."virtualenvwrapper.post_mkvirtualenv_source"]
user_scripts = "virtualenvwrapper.user_scripts:post_mkvirtualenv_source"
[project.entry-points."virtualenvwrapper.pre_cpvirtualenv"]
user_scripts = "virtualenvwrapper.user_scripts:pre_cpvirtualenv"
[project.entry-points."virtualenvwrapper.post_cpvirtualenv_source"]
user_scripts = "virtualenvwrapper.user_scripts:post_cpvirtualenv_source"
[project.entry-points."virtualenvwrapper.pre_rmvirtualenv"]
user_scripts = "virtualenvwrapper.user_scripts:pre_rmvirtualenv"
[project.entry-points."virtualenvwrapper.post_rmvirtualenv"]
user_scripts = "virtualenvwrapper.user_scripts:post_rmvirtualenv"
[project.entry-points."virtualenvwrapper.project.pre_mkproject"]
project = "virtualenvwrapper.project:pre_mkproject"
[project.entry-points."virtualenvwrapper.project.post_mkproject_source"]
project = "virtualenvwrapper.project:post_mkproject_source"
[project.entry-points."virtualenvwrapper.pre_activate"]
user_scripts = "virtualenvwrapper.user_scripts:pre_activate"
[project.entry-points."virtualenvwrapper.post_activate_source"]
project = "virtualenvwrapper.project:post_activate_source"
user_scripts = "virtualenvwrapper.user_scripts:post_activate_source"
[project.entry-points."virtualenvwrapper.pre_deactivate_source"]
project = "virtualenvwrapper.project:pre_deactivate_source"
user_scripts = "virtualenvwrapper.user_scripts:pre_deactivate_source"
[project.entry-points."virtualenvwrapper.post_deactivate_source"]
user_scripts = "virtualenvwrapper.user_scripts:post_deactivate_source"
[project.entry-points."virtualenvwrapper.get_env_details"]
user_scripts = "virtualenvwrapper.user_scripts:get_env_details"