-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (36 loc) · 913 Bytes
/
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
from setuptools import setup , find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = ( here / 'README.md' ).read_text(encoding= 'utf-8')
setup(
name='fofaclient',
version='0.1.3',
description="An unoffical fofa client",
long_description=long_description,
long_description_content_type = "text/markdown",
## TODOs
#url="https://github.com/"
#author
#author_email
#keywords
classifiers=[
'Development Status :: 3 - Alpha',
# .....
],
python_requires=">=3,<4",
install_requires=[
"requests[socks,security]~=2.25",
'pycryptodome',
"Pillow~=8.2",
'tflite_runtime~=2.5;python_version<"3.10"',
'tensorflow~=2.5;python_version>="3.10"',
'importlib-resources>=1.0;python_version<"3.9"'
],
extras_require={
"full": ["tensorflow~=2.5"]
},
packages = find_packages(),
package_data = {
"fofaclient": ["model/rucaptcha.tflite"],
},
)