Commit 4e4ccabd authored by Grant's avatar Grant
Browse files

update pyproject.toml to include auth extra

parent 4cdc6cb4
Loading
Loading
Loading
Loading
+34 −1
Original line number Diff line number Diff line
@@ -38,7 +38,40 @@ dependencies = [
[project.optional-dependencies]
postgres = ["psycopg2-binary==2.9.9"]
mssql = ["pymssql==2.2.11"]
all = ["psycopg2-binary==2.9.9", "pymssql==2.2.11", "influxdb==5.3.1"]
influx = ["influxdb==5.3.1"]
auth = [
    "xmlsec==1.3.13",
    "onelogin==2.0.3",
    "python3_saml==1.14.0",
    "ldap3==2.9.1",
    "flask>=2.0.2"
]
scrapers = [
    "urllib3~=1.26.9",
    "selenium~=4.1.3",
    "requests~=2.27.1",
    "cfscrape~=2.1.1",
    "cloudscraper~=1.2.60",
    "beautifulsoup4~=4.10.0",
    "websocket~=0.2.1"
]
all = [
    "psycopg2-binary==2.9.9",
    "pymssql==2.2.11",
    "influxdb==5.3.1",
    "urllib3~=1.26.9",
    "selenium~=4.1.3",
    "requests~=2.27.1",
    "cfscrape~=2.1.1",
    "cloudscraper~=1.2.60",
    "beautifulsoup4~=4.10.0",
    "websocket~=0.2.1",
    "xmlsec==1.3.13",
    "onelogin==2.0.3",
    "python3_saml==1.14.0",
    "ldap3==2.9.1",
    "flask>=2.0.2"
]


[project.urls]