-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 763 Bytes
/
Copy pathsetup.py
File metadata and controls
26 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
26
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="cansina",
version="0.9",
description="Web Content Discovery Tool",
author="David Garcia",
author_email="daganu@gmail.com",
url="https://github.com/deibit/cansina",
packages=find_packages(),
entry_points={
"console_scripts": [
"cansina=cansina.main:__main__",
],
},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["requests", "asciitree"],
package_data={"cansina.utils": ["*.txt"]},
keywords=["pentesting", "cybersecurity", "websecurity"],
)