Skip to content

Commit b37f5ca

Browse files
committed
standarize setup.py
1 parent 016b8d2 commit b37f5ca

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,18 @@
1010
install_requires=[],
1111
entry_points={
1212
"console_scripts": [
13-
"pygitguard=pygitguard.cli:main",
13+
"pygitguard=pygitguard.cli:main ",
1414
],
1515
},
16+
author="Diogo Ferreira da Silva",
17+
description="A Git security scanner that detects and prevents accidental commits of secrets, credentials, and other sensitive information during development.",
18+
long_description=open("README.md").read(),
19+
long_description_content_type="text/markdown",
20+
url="https://github.com/digo5ds/pygitguard",
21+
classifiers=[
22+
"Programming Language :: Python :: 3",
23+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
24+
"Operating System :: OS Independent",
25+
],
26+
python_requires=">=3.7",
1627
)

0 commit comments

Comments
 (0)