-
Notifications
You must be signed in to change notification settings - Fork 123
/
setup.py
46 lines (40 loc) · 1.43 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
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
* Filename: setup.py
* Description:
* Time: 2020.11.27
* Author: liuf5
*/
"""
from setuptools import setup
from zoomeye import __version__
DEPENDENCIES = open('requirements.txt', 'r', encoding='utf-8').read().split('\n')
README = open('README.rst', 'r', encoding='utf-8').read()
setup(
name='zoomeye',
version=__version__,
description='Python library and command-line tool for ZoomEye (https://www.zoomeye.org/doc)',
long_description=README,
long_description_content_type='text/x-rst',
author='404 Team@Knownsec',
url='https://github.com/knownsec/zoomeye-python', #
packages=['zoomeye'],
entry_points={'console_scripts': ['zoomeye=zoomeye.cli:main']},
install_requires=DEPENDENCIES,
keywords=['security tool', 'zoomeye', 'command tool'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)