-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.3 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 os.path
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, "README.md"), encoding="utf8") as fid:
README = fid.read()
setup(
name="inntinn",
version="1.3.0",
description="OSINT composite vulnerability database",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/BlackburnHax/inntinn",
author="Brandon Blackburn",
author_email="contact@bhax.net",
license="Apache License, Version 2.0",
classifiers=[
"Topic :: Security",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
"Topic :: Text Processing :: Markup :: reStructuredText",
"Topic :: Database :: Database Engines/Servers",
],
packages=["inntinn"],
include_package_data=True,
install_requires=[
"requests",
"mongoblack",
"sanic",
"blackburn",
"sanic-openapi",
"sanic_jwt",
"PyGithub",
],
)