msad 0.3.2__tar.gz → 0.3.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {msad-0.3.2 → msad-0.3.5}/PKG-INFO +5 -1
- {msad-0.3.2 → msad-0.3.5}/pyproject.toml +10 -2
- {msad-0.3.2 → msad-0.3.5}/.gitignore +0 -0
- {msad-0.3.2 → msad-0.3.5}/LICENSE +0 -0
- {msad-0.3.2 → msad-0.3.5}/README.md +0 -0
- {msad-0.3.2 → msad-0.3.5}/requirements.txt +0 -0
- {msad-0.3.2 → msad-0.3.5}/src/msad/__init__.py +0 -0
- {msad-0.3.2 → msad-0.3.5}/src/msad/ad.py +0 -0
- {msad-0.3.2 → msad-0.3.5}/src/msad/command_line.py +0 -0
- {msad-0.3.2 → msad-0.3.5}/src/msad/group.py +0 -0
- {msad-0.3.2 → msad-0.3.5}/src/msad/search.py +0 -0
- {msad-0.3.2 → msad-0.3.5}/src/msad/user.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: msad
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.5
|
4
4
|
Summary: msad is a commandline for interacting with Active Directory
|
5
5
|
Project-URL: Homepage, https://github.com/matteoredaelli/msad
|
6
6
|
Project-URL: Issues, https://github.com/matteoredaelli/msad/issues
|
@@ -10,6 +10,10 @@ License-File: LICENSE
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
12
12
|
Requires-Python: >=3.9
|
13
|
+
Requires-Dist: cryptography
|
14
|
+
Requires-Dist: fire
|
15
|
+
Requires-Dist: gssapi
|
16
|
+
Requires-Dist: ldap3
|
13
17
|
Description-Content-Type: text/markdown
|
14
18
|
|
15
19
|
# msAD
|
@@ -1,12 +1,20 @@
|
|
1
1
|
[project]
|
2
2
|
name = "msad"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.5"
|
4
4
|
authors = [
|
5
5
|
{ name="Matteo Redaelli", email="matteo.redaelli@gmail.com" },
|
6
6
|
]
|
7
7
|
description = "msad is a commandline for interacting with Active Directory"
|
8
8
|
readme = "README.md"
|
9
9
|
requires-python = ">=3.9"
|
10
|
+
|
11
|
+
dependencies = [
|
12
|
+
"ldap3",
|
13
|
+
"gssapi",
|
14
|
+
"cryptography",
|
15
|
+
"fire"
|
16
|
+
]
|
17
|
+
|
10
18
|
classifiers = [
|
11
19
|
"Programming Language :: Python :: 3",
|
12
20
|
"Operating System :: OS Independent",
|
@@ -21,7 +29,7 @@ Homepage = "https://github.com/matteoredaelli/msad"
|
|
21
29
|
Issues = "https://github.com/matteoredaelli/msad/issues"
|
22
30
|
|
23
31
|
[project.scripts]
|
24
|
-
msad = "msad:
|
32
|
+
msad = "msad.command_line:main"
|
25
33
|
|
26
34
|
[build-system]
|
27
35
|
requires = ["hatchling >= 1.26"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|