-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
35 lines (31 loc) · 1.18 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
#!/usr/bin/env python
from setuptools import setup
DEPENDENCIES = open('requirements.txt', 'r').read().split('\n')
README = open('./docs/README_CN.md', 'r').read()
setup(
name = 'FOFA-py',
version = '2.0.3',
description = 'Python library for FOFA (https://fofa.info)',
long_description=README,
long_description_content_type="text/markdown",
author = 'Fofa',
url = 'https://github.com/fofapro/fofa-py',
packages = ['fofa'],
entry_points={'console_scripts': ['fofa=fofa.__main__:main']},
install_requires=DEPENDENCIES,
license = "MIT",
keywords=['fofa', 'security', 'network'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Programming Language :: Python :: 3.11",
'Topic :: Software Development :: Libraries :: Python Modules',
],
)