-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 991 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="BRIntel1",
version="0.1.3",
description="Ferramenta de coleta de inteligência em websites brasileiros.",
author=["Matheus Oliveira [email protected]", "Julio Lira [email protected]"],
author_email=["[email protected]", "[email protected]"],
url="https://github.com/devfoundsec/BRIntelcollector",
classifiers=[
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"requests>=2.26.0",
"beautifulsoup4>=4.10.0",
],
package_data={
'brintelcollector': [
'README.md',
],
},
license="MIT License",
entry_points={
'console_scripts': [
'brintelcollector=brintelcollector.main:main'
]
},
packages=find_packages()
)