-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (35 loc) · 1.31 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(name='hsploit',
version='2.1.0',
description='An advanced command-line search engine for Exploit-DB',
keywords='hsploit',
author='Nicolas Carolo',
author_email='[email protected]',
url='https://github.com/nicolas-carolo/hsploit',
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':[
'hsploit = hsploit.hsploit:main',
]
},
)