nidhal baccouri
commited on
Commit
·
3cf3c77
1
Parent(s):
cdbd59a
fixed python version in poetry
Browse files- .github/workflows/build.yml +1 -1
- poetry.lock +25 -197
- pyproject.toml +5 -5
- pyvenv.cfg +0 -3
.github/workflows/build.yml
CHANGED
@@ -7,7 +7,7 @@ jobs:
|
|
7 |
runs-on: ubuntu-latest
|
8 |
strategy:
|
9 |
matrix:
|
10 |
-
python-version: ["3.7", "3.8"]
|
11 |
|
12 |
steps:
|
13 |
- uses: actions/checkout@v2
|
|
|
7 |
runs-on: ubuntu-latest
|
8 |
strategy:
|
9 |
matrix:
|
10 |
+
python-version: ["3.7", "3.8", "3.9"]
|
11 |
|
12 |
steps:
|
13 |
- uses: actions/checkout@v2
|
poetry.lock
CHANGED
@@ -39,18 +39,6 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
39 |
[package.dependencies]
|
40 |
pytz = ">=2015.7"
|
41 |
|
42 |
-
[[package]]
|
43 |
-
name = "backports.entry-points-selectable"
|
44 |
-
version = "1.1.0"
|
45 |
-
description = "Compatibility shim providing selectable entry points for older implementations"
|
46 |
-
category = "dev"
|
47 |
-
optional = false
|
48 |
-
python-versions = ">=2.7"
|
49 |
-
|
50 |
-
[package.extras]
|
51 |
-
docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
|
52 |
-
testing = ["pytest (>=4.6)", "pytest-flake8", "pytest-cov", "pytest-black (>=0.3.7)", "pytest-mypy", "pytest-checkdocs (>=2.4)", "pytest-enabler (>=1.0.1)"]
|
53 |
-
|
54 |
[[package]]
|
55 |
name = "beautifulsoup4"
|
56 |
version = "4.9.3"
|
@@ -119,6 +107,7 @@ python-versions = ">=3.6"
|
|
119 |
|
120 |
[package.dependencies]
|
121 |
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
|
|
122 |
|
123 |
[[package]]
|
124 |
name = "colorama"
|
@@ -158,14 +147,6 @@ sdist = ["setuptools-rust (>=0.11.4)"]
|
|
158 |
ssh = ["bcrypt (>=3.1.5)"]
|
159 |
test = ["pytest (>=6.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
|
160 |
|
161 |
-
[[package]]
|
162 |
-
name = "distlib"
|
163 |
-
version = "0.3.2"
|
164 |
-
description = "Distribution utilities"
|
165 |
-
category = "dev"
|
166 |
-
optional = false
|
167 |
-
python-versions = "*"
|
168 |
-
|
169 |
[[package]]
|
170 |
name = "docutils"
|
171 |
version = "0.17.1"
|
@@ -174,14 +155,6 @@ category = "dev"
|
|
174 |
optional = false
|
175 |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
176 |
|
177 |
-
[[package]]
|
178 |
-
name = "filelock"
|
179 |
-
version = "3.0.12"
|
180 |
-
description = "A platform independent file lock."
|
181 |
-
category = "dev"
|
182 |
-
optional = false
|
183 |
-
python-versions = "*"
|
184 |
-
|
185 |
[[package]]
|
186 |
name = "idna"
|
187 |
version = "3.2"
|
@@ -202,11 +175,12 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
|
202 |
name = "importlib-metadata"
|
203 |
version = "4.6.1"
|
204 |
description = "Read metadata from Python packages"
|
205 |
-
category = "
|
206 |
optional = false
|
207 |
python-versions = ">=3.6"
|
208 |
|
209 |
[package.dependencies]
|
|
|
210 |
zipp = ">=0.5"
|
211 |
|
212 |
[package.extras]
|
@@ -274,14 +248,6 @@ category = "dev"
|
|
274 |
optional = false
|
275 |
python-versions = ">=3.6"
|
276 |
|
277 |
-
[[package]]
|
278 |
-
name = "numpy"
|
279 |
-
version = "1.21.1"
|
280 |
-
description = "NumPy is the fundamental package for array computing with Python."
|
281 |
-
category = "main"
|
282 |
-
optional = true
|
283 |
-
python-versions = ">=3.7"
|
284 |
-
|
285 |
[[package]]
|
286 |
name = "packaging"
|
287 |
version = "21.0"
|
@@ -293,22 +259,6 @@ python-versions = ">=3.6"
|
|
293 |
[package.dependencies]
|
294 |
pyparsing = ">=2.0.2"
|
295 |
|
296 |
-
[[package]]
|
297 |
-
name = "pandas"
|
298 |
-
version = "1.3.0"
|
299 |
-
description = "Powerful data structures for data analysis, time series, and statistics"
|
300 |
-
category = "main"
|
301 |
-
optional = true
|
302 |
-
python-versions = ">=3.7.1"
|
303 |
-
|
304 |
-
[package.dependencies]
|
305 |
-
numpy = ">=1.17.3"
|
306 |
-
python-dateutil = ">=2.7.3"
|
307 |
-
pytz = ">=2017.3"
|
308 |
-
|
309 |
-
[package.extras]
|
310 |
-
test = ["hypothesis (>=3.58)", "pytest (>=6.0)", "pytest-xdist"]
|
311 |
-
|
312 |
[[package]]
|
313 |
name = "pkginfo"
|
314 |
version = "1.7.1"
|
@@ -320,14 +270,6 @@ python-versions = "*"
|
|
320 |
[package.extras]
|
321 |
testing = ["nose", "coverage"]
|
322 |
|
323 |
-
[[package]]
|
324 |
-
name = "platformdirs"
|
325 |
-
version = "2.0.2"
|
326 |
-
description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"."
|
327 |
-
category = "dev"
|
328 |
-
optional = false
|
329 |
-
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
330 |
-
|
331 |
[[package]]
|
332 |
name = "pluggy"
|
333 |
version = "0.13.1"
|
@@ -336,6 +278,9 @@ category = "dev"
|
|
336 |
optional = false
|
337 |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
338 |
|
|
|
|
|
|
|
339 |
[package.extras]
|
340 |
dev = ["pre-commit", "tox"]
|
341 |
|
@@ -383,6 +328,7 @@ python-versions = ">=3.6"
|
|
383 |
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
384 |
attrs = ">=19.2.0"
|
385 |
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
|
|
386 |
iniconfig = "*"
|
387 |
packaging = "*"
|
388 |
pluggy = ">=0.12,<1.0.0a1"
|
@@ -404,22 +350,11 @@ python-versions = ">=3.6"
|
|
404 |
docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
|
405 |
testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-virtualenv", "pytest-black (>=0.3.7)", "pytest-mypy"]
|
406 |
|
407 |
-
[[package]]
|
408 |
-
name = "python-dateutil"
|
409 |
-
version = "2.8.2"
|
410 |
-
description = "Extensions to the standard Python datetime module"
|
411 |
-
category = "main"
|
412 |
-
optional = true
|
413 |
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
|
414 |
-
|
415 |
-
[package.dependencies]
|
416 |
-
six = ">=1.5"
|
417 |
-
|
418 |
[[package]]
|
419 |
name = "pytz"
|
420 |
version = "2021.1"
|
421 |
description = "World timezone definitions, modern and historical"
|
422 |
-
category = "
|
423 |
optional = false
|
424 |
python-versions = "*"
|
425 |
|
@@ -504,7 +439,7 @@ jeepney = ">=0.6"
|
|
504 |
name = "six"
|
505 |
version = "1.16.0"
|
506 |
description = "Python 2 and 3 compatibility utilities"
|
507 |
-
category = "
|
508 |
optional = false
|
509 |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
510 |
|
@@ -634,28 +569,6 @@ category = "dev"
|
|
634 |
optional = false
|
635 |
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
636 |
|
637 |
-
[[package]]
|
638 |
-
name = "tox"
|
639 |
-
version = "3.24.0"
|
640 |
-
description = "tox is a generic virtualenv management and test command line tool"
|
641 |
-
category = "dev"
|
642 |
-
optional = false
|
643 |
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
644 |
-
|
645 |
-
[package.dependencies]
|
646 |
-
colorama = {version = ">=0.4.1", markers = "platform_system == \"Windows\""}
|
647 |
-
filelock = ">=3.0.0"
|
648 |
-
packaging = ">=14"
|
649 |
-
pluggy = ">=0.12.0"
|
650 |
-
py = ">=1.4.17"
|
651 |
-
six = ">=1.14.0"
|
652 |
-
toml = ">=0.9.4"
|
653 |
-
virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7"
|
654 |
-
|
655 |
-
[package.extras]
|
656 |
-
docs = ["pygments-github-lexers (>=0.0.5)", "sphinx (>=2.0.0)", "sphinxcontrib-autoprogram (>=0.1.5)", "towncrier (>=18.5.0)"]
|
657 |
-
testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "psutil (>=5.6.1)", "pytest (>=4.0.0)", "pytest-cov (>=2.5.1)", "pytest-mock (>=1.10.0)", "pytest-randomly (>=1.0.0)", "pytest-xdist (>=1.22.2)", "pathlib2 (>=2.3.3)"]
|
658 |
-
|
659 |
[[package]]
|
660 |
name = "tqdm"
|
661 |
version = "4.61.2"
|
@@ -691,6 +604,14 @@ requests-toolbelt = ">=0.8.0,<0.9.0 || >0.9.0"
|
|
691 |
rfc3986 = ">=1.4.0"
|
692 |
tqdm = ">=4.14"
|
693 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
[[package]]
|
695 |
name = "urllib3"
|
696 |
version = "1.26.6"
|
@@ -704,25 +625,6 @@ brotli = ["brotlipy (>=0.6.0)"]
|
|
704 |
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
|
705 |
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
|
706 |
|
707 |
-
[[package]]
|
708 |
-
name = "virtualenv"
|
709 |
-
version = "20.6.0"
|
710 |
-
description = "Virtual Python Environment builder"
|
711 |
-
category = "dev"
|
712 |
-
optional = false
|
713 |
-
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7"
|
714 |
-
|
715 |
-
[package.dependencies]
|
716 |
-
"backports.entry-points-selectable" = ">=1.0.4"
|
717 |
-
distlib = ">=0.3.1,<1"
|
718 |
-
filelock = ">=3.0.0,<4"
|
719 |
-
platformdirs = ">=2,<3"
|
720 |
-
six = ">=1.9.0,<2"
|
721 |
-
|
722 |
-
[package.extras]
|
723 |
-
docs = ["proselint (>=0.10.2)", "sphinx (>=3)", "sphinx-argparse (>=0.2.5)", "sphinx-rtd-theme (>=0.4.3)", "towncrier (>=19.9.0rc1)"]
|
724 |
-
testing = ["coverage (>=4)", "coverage-enable-subprocess (>=1)", "flaky (>=3)", "pytest (>=4)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.1)", "pytest-mock (>=2)", "pytest-randomly (>=1)", "pytest-timeout (>=1)", "packaging (>=20.0)", "xonsh (>=0.9.16)"]
|
725 |
-
|
726 |
[[package]]
|
727 |
name = "webencodings"
|
728 |
version = "0.5.1"
|
@@ -735,7 +637,7 @@ python-versions = "*"
|
|
735 |
name = "zipp"
|
736 |
version = "3.5.0"
|
737 |
description = "Backport of pathlib-compatible object wrapper for zip files"
|
738 |
-
category = "
|
739 |
optional = false
|
740 |
python-versions = ">=3.6"
|
741 |
|
@@ -745,8 +647,8 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes
|
|
745 |
|
746 |
[metadata]
|
747 |
lock-version = "1.1"
|
748 |
-
python-versions = "^3.
|
749 |
-
content-hash = "
|
750 |
|
751 |
[metadata.files]
|
752 |
alabaster = [
|
@@ -765,10 +667,6 @@ babel = [
|
|
765 |
{file = "Babel-2.9.1-py2.py3-none-any.whl", hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9"},
|
766 |
{file = "Babel-2.9.1.tar.gz", hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0"},
|
767 |
]
|
768 |
-
"backports.entry-points-selectable" = [
|
769 |
-
{file = "backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl", hash = "sha256:a6d9a871cde5e15b4c4a53e3d43ba890cc6861ec1332c9c2428c92f977192acc"},
|
770 |
-
{file = "backports.entry_points_selectable-1.1.0.tar.gz", hash = "sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a"},
|
771 |
-
]
|
772 |
beautifulsoup4 = [
|
773 |
{file = "beautifulsoup4-4.9.3-py2-none-any.whl", hash = "sha256:4c98143716ef1cb40bf7f39a8e3eec8f8b009509e74904ba3a7b315431577e35"},
|
774 |
{file = "beautifulsoup4-4.9.3-py3-none-any.whl", hash = "sha256:fff47e031e34ec82bf17e00da8f592fe7de69aeea38be00523c04623c04fb666"},
|
@@ -909,18 +807,10 @@ cryptography = [
|
|
909 |
{file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2014_x86_64.whl", hash = "sha256:ee77aa129f481be46f8d92a1a7db57269a2f23052d5f2433b4621bb457081cc9"},
|
910 |
{file = "cryptography-3.4.7.tar.gz", hash = "sha256:3d10de8116d25649631977cb37da6cbdd2d6fa0e0281d014a5b7d337255ca713"},
|
911 |
]
|
912 |
-
distlib = [
|
913 |
-
{file = "distlib-0.3.2-py2.py3-none-any.whl", hash = "sha256:23e223426b28491b1ced97dc3bbe183027419dfc7982b4fa2f05d5f3ff10711c"},
|
914 |
-
{file = "distlib-0.3.2.zip", hash = "sha256:106fef6dc37dd8c0e2c0a60d3fca3e77460a48907f335fa28420463a6f799736"},
|
915 |
-
]
|
916 |
docutils = [
|
917 |
{file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"},
|
918 |
{file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"},
|
919 |
]
|
920 |
-
filelock = [
|
921 |
-
{file = "filelock-3.0.12-py3-none-any.whl", hash = "sha256:929b7d63ec5b7d6b71b0fa5ac14e030b3f70b75747cef1b10da9b879fef15836"},
|
922 |
-
{file = "filelock-3.0.12.tar.gz", hash = "sha256:18d82244ee114f543149c66a6e0c14e9c4f8a1044b5cdaadd0f82159d6a6ff59"},
|
923 |
-
]
|
924 |
idna = [
|
925 |
{file = "idna-3.2-py3-none-any.whl", hash = "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a"},
|
926 |
{file = "idna-3.2.tar.gz", hash = "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3"},
|
@@ -985,69 +875,14 @@ markupsafe = [
|
|
985 |
{file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8"},
|
986 |
{file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"},
|
987 |
]
|
988 |
-
numpy = [
|
989 |
-
{file = "numpy-1.21.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38e8648f9449a549a7dfe8d8755a5979b45b3538520d1e735637ef28e8c2dc50"},
|
990 |
-
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fd7d7409fa643a91d0a05c7554dd68aa9c9bb16e186f6ccfe40d6e003156e33a"},
|
991 |
-
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a75b4498b1e93d8b700282dc8e655b8bd559c0904b3910b144646dbbbc03e062"},
|
992 |
-
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1412aa0aec3e00bc23fbb8664d76552b4efde98fb71f60737c83efbac24112f1"},
|
993 |
-
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e46ceaff65609b5399163de5893d8f2a82d3c77d5e56d976c8b5fb01faa6b671"},
|
994 |
-
{file = "numpy-1.21.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c6a2324085dd52f96498419ba95b5777e40b6bcbc20088fddb9e8cbb58885e8e"},
|
995 |
-
{file = "numpy-1.21.1-cp37-cp37m-win32.whl", hash = "sha256:73101b2a1fef16602696d133db402a7e7586654682244344b8329cdcbbb82172"},
|
996 |
-
{file = "numpy-1.21.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7a708a79c9a9d26904d1cca8d383bf869edf6f8e7650d85dbc77b041e8c5a0f8"},
|
997 |
-
{file = "numpy-1.21.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95b995d0c413f5d0428b3f880e8fe1660ff9396dcd1f9eedbc311f37b5652e16"},
|
998 |
-
{file = "numpy-1.21.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:635e6bd31c9fb3d475c8f44a089569070d10a9ef18ed13738b03049280281267"},
|
999 |
-
{file = "numpy-1.21.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4a3d5fb89bfe21be2ef47c0614b9c9c707b7362386c9a3ff1feae63e0267ccb6"},
|
1000 |
-
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a326af80e86d0e9ce92bcc1e65c8ff88297de4fa14ee936cb2293d414c9ec63"},
|
1001 |
-
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:791492091744b0fe390a6ce85cc1bf5149968ac7d5f0477288f78c89b385d9af"},
|
1002 |
-
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0318c465786c1f63ac05d7c4dbcecd4d2d7e13f0959b01b534ea1e92202235c5"},
|
1003 |
-
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a513bd9c1551894ee3d31369f9b07460ef223694098cf27d399513415855b68"},
|
1004 |
-
{file = "numpy-1.21.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:91c6f5fc58df1e0a3cc0c3a717bb3308ff850abdaa6d2d802573ee2b11f674a8"},
|
1005 |
-
{file = "numpy-1.21.1-cp38-cp38-win32.whl", hash = "sha256:978010b68e17150db8765355d1ccdd450f9fc916824e8c4e35ee620590e234cd"},
|
1006 |
-
{file = "numpy-1.21.1-cp38-cp38-win_amd64.whl", hash = "sha256:9749a40a5b22333467f02fe11edc98f022133ee1bfa8ab99bda5e5437b831214"},
|
1007 |
-
{file = "numpy-1.21.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d7a4aeac3b94af92a9373d6e77b37691b86411f9745190d2c351f410ab3a791f"},
|
1008 |
-
{file = "numpy-1.21.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d9e7912a56108aba9b31df688a4c4f5cb0d9d3787386b87d504762b6754fbb1b"},
|
1009 |
-
{file = "numpy-1.21.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:25b40b98ebdd272bc3020935427a4530b7d60dfbe1ab9381a39147834e985eac"},
|
1010 |
-
{file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8a92c5aea763d14ba9d6475803fc7904bda7decc2a0a68153f587ad82941fec1"},
|
1011 |
-
{file = "numpy-1.21.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05a0f648eb28bae4bcb204e6fd14603de2908de982e761a2fc78efe0f19e96e1"},
|
1012 |
-
{file = "numpy-1.21.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f01f28075a92eede918b965e86e8f0ba7b7797a95aa8d35e1cc8821f5fc3ad6a"},
|
1013 |
-
{file = "numpy-1.21.1-cp39-cp39-win32.whl", hash = "sha256:88c0b89ad1cc24a5efbb99ff9ab5db0f9a86e9cc50240177a571fbe9c2860ac2"},
|
1014 |
-
{file = "numpy-1.21.1-cp39-cp39-win_amd64.whl", hash = "sha256:01721eefe70544d548425a07c80be8377096a54118070b8a62476866d5208e33"},
|
1015 |
-
{file = "numpy-1.21.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2d4d1de6e6fb3d28781c73fbde702ac97f03d79e4ffd6598b880b2d95d62ead4"},
|
1016 |
-
{file = "numpy-1.21.1.zip", hash = "sha256:dff4af63638afcc57a3dfb9e4b26d434a7a602d225b42d746ea7fe2edf1342fd"},
|
1017 |
-
]
|
1018 |
packaging = [
|
1019 |
{file = "packaging-21.0-py3-none-any.whl", hash = "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14"},
|
1020 |
{file = "packaging-21.0.tar.gz", hash = "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7"},
|
1021 |
]
|
1022 |
-
pandas = [
|
1023 |
-
{file = "pandas-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c81b8d91e9ae861eb4406b4e0f8d4dabbc105b9c479b3d1e921fba1d35b5b62a"},
|
1024 |
-
{file = "pandas-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08eeff3da6a188e24db7f292b39a8ca9e073bf841fbbeadb946b3ad5c19d843e"},
|
1025 |
-
{file = "pandas-1.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:88864c1e28353b958b1f30e4193818519624ad9a1776921622a6a2a016d5d807"},
|
1026 |
-
{file = "pandas-1.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:872aa91e0f9ca913046ab639d4181a899f5e592030d954d28c2529b88756a736"},
|
1027 |
-
{file = "pandas-1.3.0-cp37-cp37m-win32.whl", hash = "sha256:92835113a67cbd34747c198d41f09f4b63f6fe11ca5643baebc7ab1e30e89e95"},
|
1028 |
-
{file = "pandas-1.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:7d3cd2c99faa94d717ca00ea489264a291ad7209453dffbf059bfb7971fd3a61"},
|
1029 |
-
{file = "pandas-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:823737830364d0e2af8c3912a28ba971296181a07950873492ed94e12d28c405"},
|
1030 |
-
{file = "pandas-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c746876cdd8380be0c3e70966d4566855901ac9aaa5e4b9ccaa5ca5311457d11"},
|
1031 |
-
{file = "pandas-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fe7a549d10ca534797095586883a5c17d140d606747591258869c56e14d1b457"},
|
1032 |
-
{file = "pandas-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:f058c786e7b0a9e7fa5e0b9f4422e0ccdd3bf3aa3053c18d77ed2a459bd9a45a"},
|
1033 |
-
{file = "pandas-1.3.0-cp38-cp38-win32.whl", hash = "sha256:98efc2d4983d5bb47662fe2d97b2c81b91566cb08b266490918b9c7d74a5ef64"},
|
1034 |
-
{file = "pandas-1.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:e6b75091fa54a53db3927b4d1bc997c23c5ba6f87acdfe1ee5a92c38c6b2ed6a"},
|
1035 |
-
{file = "pandas-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1ff13eed501e07e7fb26a4ea18a846b6e5d7de549b497025601fd9ccb7c1d123"},
|
1036 |
-
{file = "pandas-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:798675317d0e4863a92a9a6bc5bd2490b5f6fef8c17b95f29e2e33f28bef9eca"},
|
1037 |
-
{file = "pandas-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ed4fc66f23fe17c93a5d439230ca2d6b5f8eac7154198d327dbe8a16d98f3f10"},
|
1038 |
-
{file = "pandas-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:522bfea92f3ef6207cadc7428bda1e7605dae0383b8065030e7b5d0266717b48"},
|
1039 |
-
{file = "pandas-1.3.0-cp39-cp39-win32.whl", hash = "sha256:7897326cae660eee69d501cbfa950281a193fcf407393965e1bc07448e1cc35a"},
|
1040 |
-
{file = "pandas-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:b10d7910ae9d7920a5ff7816d794d99acbc361f7b16a0f017d4fa83ced8cb55e"},
|
1041 |
-
{file = "pandas-1.3.0.tar.gz", hash = "sha256:c554e6c9cf2d5ea1aba5979cc837b3649539ced0e18ece186f055450c86622e2"},
|
1042 |
-
]
|
1043 |
pkginfo = [
|
1044 |
{file = "pkginfo-1.7.1-py2.py3-none-any.whl", hash = "sha256:37ecd857b47e5f55949c41ed061eb51a0bee97a87c969219d144c0e023982779"},
|
1045 |
{file = "pkginfo-1.7.1.tar.gz", hash = "sha256:e7432f81d08adec7297633191bbf0bd47faf13cd8724c3a13250e51d542635bd"},
|
1046 |
]
|
1047 |
-
platformdirs = [
|
1048 |
-
{file = "platformdirs-2.0.2-py2.py3-none-any.whl", hash = "sha256:0b9547541f599d3d242078ae60b927b3e453f0ad52f58b4d4bc3be86aed3ec41"},
|
1049 |
-
{file = "platformdirs-2.0.2.tar.gz", hash = "sha256:3b00d081227d9037bbbca521a5787796b5ef5000faea1e43fd76f1d44b06fcfa"},
|
1050 |
-
]
|
1051 |
pluggy = [
|
1052 |
{file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"},
|
1053 |
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},
|
@@ -1076,10 +911,6 @@ pytest-runner = [
|
|
1076 |
{file = "pytest-runner-5.3.1.tar.gz", hash = "sha256:0fce5b8dc68760f353979d99fdd6b3ad46330b6b1837e2077a89ebcf204aac91"},
|
1077 |
{file = "pytest_runner-5.3.1-py3-none-any.whl", hash = "sha256:85f93af814438ee322b4ea08fe3f5c2ad53b253577f3bd84b2ad451fee450ac5"},
|
1078 |
]
|
1079 |
-
python-dateutil = [
|
1080 |
-
{file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"},
|
1081 |
-
{file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"},
|
1082 |
-
]
|
1083 |
pytz = [
|
1084 |
{file = "pytz-2021.1-py2.py3-none-any.whl", hash = "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798"},
|
1085 |
{file = "pytz-2021.1.tar.gz", hash = "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da"},
|
@@ -1152,10 +983,6 @@ toml = [
|
|
1152 |
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
|
1153 |
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
|
1154 |
]
|
1155 |
-
tox = [
|
1156 |
-
{file = "tox-3.24.0-py2.py3-none-any.whl", hash = "sha256:c990028355f0d0b681e3db9baa89dd9f839a6e999c320029339f6a6b36160591"},
|
1157 |
-
{file = "tox-3.24.0.tar.gz", hash = "sha256:67636634df6569e450c4bc18fdfd8b84d7903b3902d5c65416eb6735f3d4afb8"},
|
1158 |
-
]
|
1159 |
tqdm = [
|
1160 |
{file = "tqdm-4.61.2-py2.py3-none-any.whl", hash = "sha256:5aa445ea0ad8b16d82b15ab342de6b195a722d75fc1ef9934a46bba6feafbc64"},
|
1161 |
{file = "tqdm-4.61.2.tar.gz", hash = "sha256:8bb94db0d4468fea27d004a0f1d1c02da3cdedc00fe491c0de986b76a04d6b0a"},
|
@@ -1164,14 +991,15 @@ twine = [
|
|
1164 |
{file = "twine-3.4.2-py3-none-any.whl", hash = "sha256:087328e9bb405e7ce18527a2dca4042a84c7918658f951110b38bc135acab218"},
|
1165 |
{file = "twine-3.4.2.tar.gz", hash = "sha256:4caec0f1ed78dc4c9b83ad537e453d03ce485725f2aea57f1bb3fdde78dae936"},
|
1166 |
]
|
|
|
|
|
|
|
|
|
|
|
1167 |
urllib3 = [
|
1168 |
{file = "urllib3-1.26.6-py2.py3-none-any.whl", hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4"},
|
1169 |
{file = "urllib3-1.26.6.tar.gz", hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f"},
|
1170 |
]
|
1171 |
-
virtualenv = [
|
1172 |
-
{file = "virtualenv-20.6.0-py2.py3-none-any.whl", hash = "sha256:e4fc84337dce37ba34ef520bf2d4392b392999dbe47df992870dc23230f6b758"},
|
1173 |
-
{file = "virtualenv-20.6.0.tar.gz", hash = "sha256:51df5d8a2fad5d1b13e088ff38a433475768ff61f202356bb9812c454c20ae45"},
|
1174 |
-
]
|
1175 |
webencodings = [
|
1176 |
{file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
|
1177 |
{file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
|
|
|
39 |
[package.dependencies]
|
40 |
pytz = ">=2015.7"
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
[[package]]
|
43 |
name = "beautifulsoup4"
|
44 |
version = "4.9.3"
|
|
|
107 |
|
108 |
[package.dependencies]
|
109 |
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
110 |
+
importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
|
111 |
|
112 |
[[package]]
|
113 |
name = "colorama"
|
|
|
147 |
ssh = ["bcrypt (>=3.1.5)"]
|
148 |
test = ["pytest (>=6.0)", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"]
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
[[package]]
|
151 |
name = "docutils"
|
152 |
version = "0.17.1"
|
|
|
155 |
optional = false
|
156 |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
[[package]]
|
159 |
name = "idna"
|
160 |
version = "3.2"
|
|
|
175 |
name = "importlib-metadata"
|
176 |
version = "4.6.1"
|
177 |
description = "Read metadata from Python packages"
|
178 |
+
category = "main"
|
179 |
optional = false
|
180 |
python-versions = ">=3.6"
|
181 |
|
182 |
[package.dependencies]
|
183 |
+
typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""}
|
184 |
zipp = ">=0.5"
|
185 |
|
186 |
[package.extras]
|
|
|
248 |
optional = false
|
249 |
python-versions = ">=3.6"
|
250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
[[package]]
|
252 |
name = "packaging"
|
253 |
version = "21.0"
|
|
|
259 |
[package.dependencies]
|
260 |
pyparsing = ">=2.0.2"
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
[[package]]
|
263 |
name = "pkginfo"
|
264 |
version = "1.7.1"
|
|
|
270 |
[package.extras]
|
271 |
testing = ["nose", "coverage"]
|
272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
[[package]]
|
274 |
name = "pluggy"
|
275 |
version = "0.13.1"
|
|
|
278 |
optional = false
|
279 |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
|
280 |
|
281 |
+
[package.dependencies]
|
282 |
+
importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
|
283 |
+
|
284 |
[package.extras]
|
285 |
dev = ["pre-commit", "tox"]
|
286 |
|
|
|
328 |
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
329 |
attrs = ">=19.2.0"
|
330 |
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
331 |
+
importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
|
332 |
iniconfig = "*"
|
333 |
packaging = "*"
|
334 |
pluggy = ">=0.12,<1.0.0a1"
|
|
|
350 |
docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
|
351 |
testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-virtualenv", "pytest-black (>=0.3.7)", "pytest-mypy"]
|
352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
[[package]]
|
354 |
name = "pytz"
|
355 |
version = "2021.1"
|
356 |
description = "World timezone definitions, modern and historical"
|
357 |
+
category = "dev"
|
358 |
optional = false
|
359 |
python-versions = "*"
|
360 |
|
|
|
439 |
name = "six"
|
440 |
version = "1.16.0"
|
441 |
description = "Python 2 and 3 compatibility utilities"
|
442 |
+
category = "dev"
|
443 |
optional = false
|
444 |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
|
445 |
|
|
|
569 |
optional = false
|
570 |
python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*"
|
571 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
[[package]]
|
573 |
name = "tqdm"
|
574 |
version = "4.61.2"
|
|
|
604 |
rfc3986 = ">=1.4.0"
|
605 |
tqdm = ">=4.14"
|
606 |
|
607 |
+
[[package]]
|
608 |
+
name = "typing-extensions"
|
609 |
+
version = "3.10.0.0"
|
610 |
+
description = "Backported and Experimental Type Hints for Python 3.5+"
|
611 |
+
category = "main"
|
612 |
+
optional = false
|
613 |
+
python-versions = "*"
|
614 |
+
|
615 |
[[package]]
|
616 |
name = "urllib3"
|
617 |
version = "1.26.6"
|
|
|
625 |
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"]
|
626 |
socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
|
627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
[[package]]
|
629 |
name = "webencodings"
|
630 |
version = "0.5.1"
|
|
|
637 |
name = "zipp"
|
638 |
version = "3.5.0"
|
639 |
description = "Backport of pathlib-compatible object wrapper for zip files"
|
640 |
+
category = "main"
|
641 |
optional = false
|
642 |
python-versions = ">=3.6"
|
643 |
|
|
|
647 |
|
648 |
[metadata]
|
649 |
lock-version = "1.1"
|
650 |
+
python-versions = "^3.7"
|
651 |
+
content-hash = "b07152dec26ab024bb88d96ed0662e0d575390d70ef05ca6c03c9468cf22d699"
|
652 |
|
653 |
[metadata.files]
|
654 |
alabaster = [
|
|
|
667 |
{file = "Babel-2.9.1-py2.py3-none-any.whl", hash = "sha256:ab49e12b91d937cd11f0b67cb259a57ab4ad2b59ac7a3b41d6c06c0ac5b0def9"},
|
668 |
{file = "Babel-2.9.1.tar.gz", hash = "sha256:bc0c176f9f6a994582230df350aa6e05ba2ebe4b3ac317eab29d9be5d2768da0"},
|
669 |
]
|
|
|
|
|
|
|
|
|
670 |
beautifulsoup4 = [
|
671 |
{file = "beautifulsoup4-4.9.3-py2-none-any.whl", hash = "sha256:4c98143716ef1cb40bf7f39a8e3eec8f8b009509e74904ba3a7b315431577e35"},
|
672 |
{file = "beautifulsoup4-4.9.3-py3-none-any.whl", hash = "sha256:fff47e031e34ec82bf17e00da8f592fe7de69aeea38be00523c04623c04fb666"},
|
|
|
807 |
{file = "cryptography-3.4.7-pp37-pypy37_pp73-manylinux2014_x86_64.whl", hash = "sha256:ee77aa129f481be46f8d92a1a7db57269a2f23052d5f2433b4621bb457081cc9"},
|
808 |
{file = "cryptography-3.4.7.tar.gz", hash = "sha256:3d10de8116d25649631977cb37da6cbdd2d6fa0e0281d014a5b7d337255ca713"},
|
809 |
]
|
|
|
|
|
|
|
|
|
810 |
docutils = [
|
811 |
{file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"},
|
812 |
{file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"},
|
813 |
]
|
|
|
|
|
|
|
|
|
814 |
idna = [
|
815 |
{file = "idna-3.2-py3-none-any.whl", hash = "sha256:14475042e284991034cb48e06f6851428fb14c4dc953acd9be9a5e95c7b6dd7a"},
|
816 |
{file = "idna-3.2.tar.gz", hash = "sha256:467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3"},
|
|
|
875 |
{file = "MarkupSafe-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:693ce3f9e70a6cf7d2fb9e6c9d8b204b6b39897a2c4a1aa65728d5ac97dcc1d8"},
|
876 |
{file = "MarkupSafe-2.0.1.tar.gz", hash = "sha256:594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"},
|
877 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
878 |
packaging = [
|
879 |
{file = "packaging-21.0-py3-none-any.whl", hash = "sha256:c86254f9220d55e31cc94d69bade760f0847da8000def4dfe1c6b872fd14ff14"},
|
880 |
{file = "packaging-21.0.tar.gz", hash = "sha256:7dc96269f53a4ccec5c0670940a4281106dd0bb343f47b7471f779df49c2fbe7"},
|
881 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
882 |
pkginfo = [
|
883 |
{file = "pkginfo-1.7.1-py2.py3-none-any.whl", hash = "sha256:37ecd857b47e5f55949c41ed061eb51a0bee97a87c969219d144c0e023982779"},
|
884 |
{file = "pkginfo-1.7.1.tar.gz", hash = "sha256:e7432f81d08adec7297633191bbf0bd47faf13cd8724c3a13250e51d542635bd"},
|
885 |
]
|
|
|
|
|
|
|
|
|
886 |
pluggy = [
|
887 |
{file = "pluggy-0.13.1-py2.py3-none-any.whl", hash = "sha256:966c145cd83c96502c3c3868f50408687b38434af77734af1e9ca461a4081d2d"},
|
888 |
{file = "pluggy-0.13.1.tar.gz", hash = "sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0"},
|
|
|
911 |
{file = "pytest-runner-5.3.1.tar.gz", hash = "sha256:0fce5b8dc68760f353979d99fdd6b3ad46330b6b1837e2077a89ebcf204aac91"},
|
912 |
{file = "pytest_runner-5.3.1-py3-none-any.whl", hash = "sha256:85f93af814438ee322b4ea08fe3f5c2ad53b253577f3bd84b2ad451fee450ac5"},
|
913 |
]
|
|
|
|
|
|
|
|
|
914 |
pytz = [
|
915 |
{file = "pytz-2021.1-py2.py3-none-any.whl", hash = "sha256:eb10ce3e7736052ed3623d49975ce333bcd712c7bb19a58b9e2089d4057d0798"},
|
916 |
{file = "pytz-2021.1.tar.gz", hash = "sha256:83a4a90894bf38e243cf052c8b58f381bfe9a7a483f6a9cab140bc7f702ac4da"},
|
|
|
983 |
{file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"},
|
984 |
{file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"},
|
985 |
]
|
|
|
|
|
|
|
|
|
986 |
tqdm = [
|
987 |
{file = "tqdm-4.61.2-py2.py3-none-any.whl", hash = "sha256:5aa445ea0ad8b16d82b15ab342de6b195a722d75fc1ef9934a46bba6feafbc64"},
|
988 |
{file = "tqdm-4.61.2.tar.gz", hash = "sha256:8bb94db0d4468fea27d004a0f1d1c02da3cdedc00fe491c0de986b76a04d6b0a"},
|
|
|
991 |
{file = "twine-3.4.2-py3-none-any.whl", hash = "sha256:087328e9bb405e7ce18527a2dca4042a84c7918658f951110b38bc135acab218"},
|
992 |
{file = "twine-3.4.2.tar.gz", hash = "sha256:4caec0f1ed78dc4c9b83ad537e453d03ce485725f2aea57f1bb3fdde78dae936"},
|
993 |
]
|
994 |
+
typing-extensions = [
|
995 |
+
{file = "typing_extensions-3.10.0.0-py2-none-any.whl", hash = "sha256:0ac0f89795dd19de6b97debb0c6af1c70987fd80a2d62d1958f7e56fcc31b497"},
|
996 |
+
{file = "typing_extensions-3.10.0.0-py3-none-any.whl", hash = "sha256:779383f6086d90c99ae41cf0ff39aac8a7937a9283ce0a414e5dd782f4c94a84"},
|
997 |
+
{file = "typing_extensions-3.10.0.0.tar.gz", hash = "sha256:50b6f157849174217d0656f99dc82fe932884fb250826c18350e159ec6cdf342"},
|
998 |
+
]
|
999 |
urllib3 = [
|
1000 |
{file = "urllib3-1.26.6-py2.py3-none-any.whl", hash = "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4"},
|
1001 |
{file = "urllib3-1.26.6.tar.gz", hash = "sha256:f57b4c16c62fa2760b7e3d97c35b255512fb6b59a259730f36ba32ce9f8e342f"},
|
1002 |
]
|
|
|
|
|
|
|
|
|
1003 |
webencodings = [
|
1004 |
{file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
|
1005 |
{file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
|
pyproject.toml
CHANGED
@@ -10,7 +10,7 @@ homepage = "https://github.com/nidhaloff/deep_translator"
|
|
10 |
repository = "https://github.com/nidhaloff/deep_translator"
|
11 |
documentation = "https://deep-translator.readthedocs.io/en/latest/"
|
12 |
keywords = ["deep_translator", "deepL", "DeepL", "translator", "translation", "automation", "web scraping", "google translator", "google translation", "google trans", "PONS", "YANDEX", "MyMemory translator", "Linguee", "QCRI", "Language", "Language detection", "detect language", "free translation", "unlimited translation", "translate for free"]
|
13 |
-
classifiers = [
|
14 |
"Development Status :: 5 - Production/Stable",
|
15 |
"Intended Audience :: Developers",
|
16 |
"Intended Audience :: Education",
|
@@ -31,15 +31,15 @@ deep-translator = 'deep_translator.main:cli'
|
|
31 |
dt = 'deep_translator.main:cli'
|
32 |
|
33 |
[tool.poetry.dependencies]
|
34 |
-
python = "^3.
|
35 |
beautifulsoup4 = "^4.9.1"
|
36 |
requests = "^2.23.0"
|
37 |
click = "^8.0.1"
|
38 |
-
pandas = {version = "^1.3.0", optional = true}
|
39 |
|
40 |
[tool.poetry.dev-dependencies]
|
41 |
wheel = "flake8"
|
42 |
-
tox = "^3.24.0"
|
43 |
coverage = "^5.5"
|
44 |
Sphinx = "^4.1.1"
|
45 |
twine = "^3.4.2"
|
@@ -49,4 +49,4 @@ toml = "^0.10.2"
|
|
49 |
|
50 |
[build-system]
|
51 |
requires = ["poetry-core>=1.0.0"]
|
52 |
-
build-backend = "poetry.core.masonry.api"
|
|
|
10 |
repository = "https://github.com/nidhaloff/deep_translator"
|
11 |
documentation = "https://deep-translator.readthedocs.io/en/latest/"
|
12 |
keywords = ["deep_translator", "deepL", "DeepL", "translator", "translation", "automation", "web scraping", "google translator", "google translation", "google trans", "PONS", "YANDEX", "MyMemory translator", "Linguee", "QCRI", "Language", "Language detection", "detect language", "free translation", "unlimited translation", "translate for free"]
|
13 |
+
classifiers = [
|
14 |
"Development Status :: 5 - Production/Stable",
|
15 |
"Intended Audience :: Developers",
|
16 |
"Intended Audience :: Education",
|
|
|
31 |
dt = 'deep_translator.main:cli'
|
32 |
|
33 |
[tool.poetry.dependencies]
|
34 |
+
python = "^3.7"
|
35 |
beautifulsoup4 = "^4.9.1"
|
36 |
requests = "^2.23.0"
|
37 |
click = "^8.0.1"
|
38 |
+
#pandas = {version = "^1.3.0", optional = true}
|
39 |
|
40 |
[tool.poetry.dev-dependencies]
|
41 |
wheel = "flake8"
|
42 |
+
#tox = "^3.24.0"
|
43 |
coverage = "^5.5"
|
44 |
Sphinx = "^4.1.1"
|
45 |
twine = "^3.4.2"
|
|
|
49 |
|
50 |
[build-system]
|
51 |
requires = ["poetry-core>=1.0.0"]
|
52 |
+
build-backend = "poetry.core.masonry.api"
|
pyvenv.cfg
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
home = /usr/bin
|
2 |
-
include-system-site-packages = false
|
3 |
-
version = 3.7.7
|
|
|
|
|
|
|
|