-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.47 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (48 loc) · 1.47 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
49
from setuptools import setup, find_packages
setup(
name="pynetworkintel",
version="1.0.0",
description="AI-powered network intelligence and vulnerability discovery platform",
author="Georgi Mullassery",
author_email="mullassery@gmail.com",
url="https://github.com/Mullassery/PyNetworkIntel",
project_urls={
"Documentation": "https://github.com/Mullassery/PyNetworkIntel",
"Source Code": "https://github.com/Mullassery/PyNetworkIntel",
"Bug Tracker": "https://github.com/Mullassery/PyNetworkIntel/issues",
},
packages=find_packages(),
package_data={
"pynetworkintel": ["py.typed"],
},
python_requires=">=3.10",
install_requires=[
"paramiko>=3.0",
"netaddr>=0.9",
"pyyaml>=6.0",
"requests>=2.31",
"anthropic>=0.25",
],
extras_require={
"dev": [
"pytest>=7.4",
"pytest-cov>=4.1",
"black>=23.7",
"ruff>=0.0.280",
],
},
entry_points={
"console_scripts": [
"pynetworkintel=pynetworkintel.cli:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)