yeswehack 0.7.2__tar.gz → 0.8.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {yeswehack-0.7.2 → yeswehack-0.8.2}/PKG-INFO +5 -2
- {yeswehack-0.7.2 → yeswehack-0.8.2}/pyproject.toml +3 -2
- yeswehack-0.7.2/setup.py +0 -30
- {yeswehack-0.7.2 → yeswehack-0.8.2}/README.md +0 -0
- {yeswehack-0.7.2 → yeswehack-0.8.2}/yeswehack/__init__.py +0 -0
- {yeswehack-0.7.2 → yeswehack-0.8.2}/yeswehack/api.py +0 -0
- {yeswehack-0.7.2 → yeswehack-0.8.2}/yeswehack/exceptions.py +0 -0
- {yeswehack-0.7.2 → yeswehack-0.8.2}/yeswehack/models.py +0 -0
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: yeswehack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.2
|
|
4
4
|
Summary: yeswehack - YesWeHack API Wrapper
|
|
5
5
|
Home-page: https://yeswehack.com
|
|
6
6
|
Author: Jean Lou Hau
|
|
7
7
|
Author-email: jl.hau@yeswehack.com
|
|
8
8
|
Maintainer: YesWeHack
|
|
9
9
|
Maintainer-email: project@yeswehack.com
|
|
10
|
-
Requires-Python: >=3.7.0,<3.
|
|
10
|
+
Requires-Python: >=3.7.0,<3.13
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.7
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.8
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
20
|
Requires-Dist: requests (>=2.24.0,<3.0.0)
|
|
18
21
|
Project-URL: Repository, https://yeswehack.com
|
|
19
22
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "yeswehack"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.8.2"
|
|
4
4
|
description = "yeswehack - YesWeHack API Wrapper"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = ["Jean Lou Hau <jl.hau@yeswehack.com>"]
|
|
@@ -19,9 +19,10 @@ exclude = [
|
|
|
19
19
|
]
|
|
20
20
|
|
|
21
21
|
[tool.poetry.dependencies]
|
|
22
|
-
python = ">=3.7.0,<3.
|
|
22
|
+
python = ">=3.7.0,<3.13"
|
|
23
23
|
requests = "^2.24.0"
|
|
24
24
|
|
|
25
|
+
|
|
25
26
|
[tool.poetry.dev-dependencies]
|
|
26
27
|
tox = "^3.20.1"
|
|
27
28
|
tox-pyenv = "^1.1.0"
|
yeswehack-0.7.2/setup.py
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
from setuptools import setup
|
|
3
|
-
|
|
4
|
-
packages = \
|
|
5
|
-
['yeswehack']
|
|
6
|
-
|
|
7
|
-
package_data = \
|
|
8
|
-
{'': ['*']}
|
|
9
|
-
|
|
10
|
-
install_requires = \
|
|
11
|
-
['requests>=2.24.0,<3.0.0']
|
|
12
|
-
|
|
13
|
-
setup_kwargs = {
|
|
14
|
-
'name': 'yeswehack',
|
|
15
|
-
'version': '0.7.2',
|
|
16
|
-
'description': 'yeswehack - YesWeHack API Wrapper',
|
|
17
|
-
'long_description': 'SDK for yeswehack\n\n\n# Build from source\n\n`make build` (or `poetry build`)\n\n# Installation\n\n## Developer\n\n### Requirements\n\n- [`poetry`](https://python-poetry.org/) (`pip install poetry`)\n\n### Installation\n\n`make install` (or `poetry install`): creates a virtualenv and install dependencies\n\n## From pip\n\n```\npip install yeswehack\n```\n\n## From wheel\n\n```\npip install path/to/yeswehack-wheel.whl\n```\n\n# Getting starting with YesWeHack Python SDK\n\n## API Module\n\nIn this python module, we define object mapping to YesWeHack API Object.\n',
|
|
18
|
-
'author': 'Jean Lou Hau',
|
|
19
|
-
'author_email': 'jl.hau@yeswehack.com',
|
|
20
|
-
'maintainer': 'YesWeHack',
|
|
21
|
-
'maintainer_email': 'project@yeswehack.com',
|
|
22
|
-
'url': 'https://yeswehack.com',
|
|
23
|
-
'packages': packages,
|
|
24
|
-
'package_data': package_data,
|
|
25
|
-
'install_requires': install_requires,
|
|
26
|
-
'python_requires': '>=3.7.0,<3.10',
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
setup(**setup_kwargs)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|