|
| 1 | +[project] |
| 2 | +name = "apify" |
| 3 | +version = "1.1.0" |
| 4 | +description = "Apify SDK for Python" |
| 5 | +readme = "README.md" |
| 6 | +license = {text = "Apache Software License"} |
| 7 | +authors = [ |
| 8 | + { name = "Apify Technologies s.r.o.", email = "[email protected]" } |
| 9 | +] |
| 10 | +keywords = ["apify", "sdk", "actor", "scraping", "automation"] |
| 11 | + |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 5 - Production/Stable", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: Apache Software License", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Programming Language :: Python :: 3.8", |
| 18 | + "Programming Language :: Python :: 3.9", |
| 19 | + "Programming Language :: Python :: 3.10", |
| 20 | + "Programming Language :: Python :: 3.11", |
| 21 | + "Topic :: Software Development :: Libraries", |
| 22 | +] |
| 23 | + |
| 24 | +requires-python = ">=3.8" |
| 25 | +dependencies = [ |
| 26 | + "aiofiles ~= 23.1.0", |
| 27 | + "aioshutil ~= 1.3", |
| 28 | + "apify-client ~= 1.2.0", |
| 29 | + "colorama ~= 0.4.6", |
| 30 | + "cryptography ~= 40.0.2", |
| 31 | + "httpx ~= 0.24.1", |
| 32 | + "psutil ~= 5.9.5", |
| 33 | + "pyee ~= 9.1.0", |
| 34 | + "sortedcollections ~= 2.1.0", |
| 35 | + "typing-extensions ~= 4.6.0", |
| 36 | + "websockets ~= 11.0.3", |
| 37 | +] |
| 38 | + |
| 39 | +[project.optional-dependencies] |
| 40 | +dev = [ |
| 41 | + "autopep8 ~= 2.0.2", |
| 42 | + "build ~= 0.10.0", |
| 43 | + "filelock ~= 3.12.0", |
| 44 | + "flake8 ~= 6.0.0", |
| 45 | + "flake8-bugbear ~= 23.5.9", |
| 46 | + "flake8-commas ~= 2.1.0", |
| 47 | + "flake8-comprehensions ~= 3.12.0", |
| 48 | + "flake8-datetimez ~= 20.10.0", |
| 49 | + "flake8-docstrings ~= 1.7.0", |
| 50 | + "flake8-encodings ~= 0.5.0", |
| 51 | + "flake8-isort ~= 6.0.0", |
| 52 | + "flake8-noqa ~= 1.3.1", |
| 53 | + "flake8-pytest-style ~= 1.7.2", |
| 54 | + "flake8-quotes ~= 3.3.2", |
| 55 | + "flake8-unused-arguments ~= 0.0.13", |
| 56 | + "isort ~= 5.12.0", |
| 57 | + "mypy ~= 1.3.0", |
| 58 | + "pep8-naming ~= 0.13.3", |
| 59 | + "pre-commit ~= 3.3.2", |
| 60 | + "pytest ~= 7.3.1", |
| 61 | + "pytest-asyncio ~= 0.21.0", |
| 62 | + "pytest-only ~= 2.0.0", |
| 63 | + "pytest-randomly ~= 3.12.0", |
| 64 | + "pytest-timeout ~= 2.1.0", |
| 65 | + "pytest-xdist ~= 3.3.1", |
| 66 | + "respx ~= 0.20.1", |
| 67 | + "sphinx ~= 6.1.3", |
| 68 | + "sphinx-autodoc-typehints ~= 1.22", |
| 69 | + "sphinx-markdown-builder == 0.5.4", # pinned to 0.5.4, because 0.5.5 has a formatting bug |
| 70 | + "twine ~= 4.0.2", |
| 71 | + "types-aiofiles ~= 23.1.0.3", |
| 72 | + "types-colorama ~= 0.4.15.11", |
| 73 | + "types-psutil ~= 5.9.5.12", |
| 74 | +] |
| 75 | + |
| 76 | +[project.urls] |
| 77 | +"Homepage" = "https://docs.apify.com/sdk/python/" |
| 78 | +"Documentation" = "https://docs.apify.com/sdk/python/" |
| 79 | +"Source" = "https://github.com/apify/apify-sdk-python" |
| 80 | +"Issue tracker" = "https://github.com/apify/apify-sdk-python/issues" |
| 81 | +"Changelog" = "https://github.com/apify/apify-sdk-python/blob/master/CHANGELOG.md" |
| 82 | +"Apify Homepage" = "https://apify.com" |
| 83 | + |
| 84 | +[build-system] |
| 85 | +requires = ["setuptools>=64.0.0", "wheel"] |
| 86 | +build-backend = "setuptools.build_meta" |
| 87 | + |
| 88 | +[tool.setuptools.packages.find] |
| 89 | +where = ["src"] |
| 90 | +include = ["apify*"] |
| 91 | + |
| 92 | +[tool.setuptools.package-data] |
| 93 | +apify = ["py.typed"] |
0 commit comments