-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (44 loc) · 1.52 KB
/
setup.cfg
File metadata and controls
48 lines (44 loc) · 1.52 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
47
48
[metadata]
name = dcsync
version = attr: dcsync.__version__
description = DCSync is a python script for dumping domain users secrets.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/AetherBlack/DCSync
license = GNU
license_files = LICENSE
classifiers =
# See: https://pypi.python.org/pypi?:action=list_classifiers
Environment :: Console
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
# List of Python versions and their support status:
# https://en.wikipedia.org/wiki/History_of_Python#Support
# https://endoflife.date/python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
project_urls =
Bug Tracker = https://github.com/AetherBlack/DCSync/issues
[options]
packages =
DCSync
DCSync.core
DCSync.network
DCSync.structures
DCSync.structures.ADObject
python_requires = >=3.6
include_package_data = True
[options.entry_points]
console_scripts =
dcsync = DCSync.__main__:main
[options.data_files]
. = requirements.txt
[requirements-files]
# setuptools does not support "file:", so use a extra package for this:
# https://pypi.org/project/setuptools-declarative-requirements/
# https://github.com/pypa/setuptools/issues/1951#issuecomment-718094135
install_requires = requirements.txt