-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
43 lines (39 loc) · 1.13 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
import setuptools
import pathlib
HERE = pathlib.Path(__file__).parent
VERSION = "1.0.14"
PACKAGE_NAME = "bevigil-cli"
AUTHOR = "Bevigil"
AUTHOR_EMAIL = "[email protected]"
URL = "https://osint.bevigil.com/"
LICENSE = "Apache License 2.0"
DESCRIPTION = "BeVigil OSINT CLI"
LONG_DESCRIPTION = (HERE / "README.md").read_text()
LONG_DESC_TYPE = "text/markdown"
with open("requirements.txt" , "r") as f:
INSTALL_REQUIRES = [data.rstrip() for data in f]
setuptools.setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
install_requires=INSTALL_REQUIRES,
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
entry_points={
"console_scripts": [
"bevigil-cli = bevigil.cli:main"
]
}
)