-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (55 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
62 lines (55 loc) · 1.7 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="mdast_cli",
version='2026.7',
python_requires='>=3.12',
author="Dynamic-Mobile-Security",
description="Dynamic-Mobile-Security",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Dynamic-Mobile-Security/mdast-cli",
packages=find_packages(),
include_package_data=True,
package_data={'': ['device.properties']},
install_requires=[
'altgraph==0.17',
'beautifulsoup4==4.10.0',
'cachetools==4.1.1',
'certifi>=2023.7.22',
'cffi>=1.15.0',
'chardet>=3.0.4',
'charset-normalizer==2.0.12',
'cryptography>=37.0.2',
'google==3.0.0',
'google-auth>=2.23.0',
'idna>=3.7',
'pyasn1==0.4.8',
'pyasn1-modules==0.2.8',
'pycparser==2.21',
'pyparsing==3.0.7',
'pytz>=2021.1',
'requests>=2.23.0',
'rsa==4.8',
'six>=1.15.0',
'soupsieve==2.3.1',
'uritemplate==3.0.1',
'urllib3>=1.26.13',
'tqdm>=4.66.0'
],
entry_points={
'console_scripts': [
'mdast_cli=mdast_cli.mdast_scan:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
],
)