-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·41 lines (37 loc) · 1.35 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup, find_packages
import os
import sys
setup(name='houndsploit',
version='2.8.0',
description='An advanced graphic search engine for Exploit-DB',
keywords='houndsploit',
author='Nicolas Carolo',
author_email='nicolascarolo.dev@gmail',
url='https://github.com/nicolas-carolo/houndsploit',
license='3-clause BSD',
long_description=io.open(
'./docs/README.rst', 'r', encoding='utf-8').read(),
platforms='any',
zip_safe=False,
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 1 - Planning',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=[],
entry_points={
'console_scripts':[
'houndsploit = HoundSploit.main:main',
]
},
)