-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
47 lines (42 loc) · 1.51 KB
/
setup.py
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
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='GoldenCopy',
version='1.6',
license='GNU',
author="Dramelac",
author_email='[email protected]',
description='Copy the properties and groups of a user or computer from neo4j (bloodhound) to create an identical golden ticket.',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.6, <4',
url='https://github.com/Dramelac/GoldenCopy',
keywords='pentest redteam goldenticket goldencopy',
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
'py2neo>=2021.2.4',
],
py_modules=["goldencopy"],
entry_points={
'console_scripts': [
'goldencopy=goldencopy:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/Dramelac/GoldenCopy/issues',
'Source': 'https://github.com/Dramelac/GoldenCopy',
},
)