-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 763 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 763 Bytes
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
import setuptools
with open( "README.md", "r", encoding="utf-8" ) as fh:
long_description = fh.read()
setuptools.setup(
name="pyicacls",
version="1.1.2",
author="Gaffner",
author_email="gefen102@gmail.com",
url="https://github.com/gaffner/Pyicacls",
description="A package to show and set windows files permissions",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=["pyicacls", "pyicacls.examples"],
install_requires=[
'impacket~=0.9.23'
],
)