Skip to content

Commit

Permalink
revert cli optional-dependencies group
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaundry authored Oct 6, 2024
1 parent 1e45fa5 commit b33abae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/source/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ source /opt/parsedmarc/venv/bin/activate
To install or upgrade `parsedmarc` inside the virtualenv, run:

```bash
sudo -u parsedmarc /opt/parsedmarc/venv/bin/pip install -U parsedmarc[cli]
sudo -u parsedmarc /opt/parsedmarc/venv/bin/pip install -U parsedmarc
```

## Optional dependencies
Expand Down
17 changes: 7 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ classifiers = [
]
dependencies = [
"azure-identity>=1.8.0",
"azure-monitor-ingestion>=1.0.0",
"boto3>=1.16.63",
"dateparser>=1.1.1",
"dnspython>=2.0.0",
"elasticsearch-dsl==7.4.0",
"elasticsearch<7.14.0",
"expiringdict>=1.1.4",
"geoip2>=3.0.0",
"google-api-core>=2.4.0",
Expand All @@ -40,10 +44,13 @@ dependencies = [
"google-auth-oauthlib>=0.4.6",
"google-auth>=2.3.3",
"imapclient>=2.1.0",
"kafka-python-ng>=2.2.2",
"lxml>=4.4.0",
"mailsuite>=1.9.17",
"msgraph-core==0.2.2",
"opensearch-py>=2.4.2,<=3.0.0",
"publicsuffixlist>=0.10.0",
"pygelf>=0.4.2",
"requests>=2.22.0",
"tqdm>=4.31.1",
"urllib3>=1.25.7",
Expand All @@ -61,16 +68,6 @@ build = [
"sphinx",
"sphinx_rtd_theme",
]
cli = [
"azure-identity>=1.8.0",
"azure-monitor-ingestion>=1.0.0",
"boto3>=1.16.63",
"elasticsearch-dsl==7.4.0",
"elasticsearch<7.14.0",
"kafka-python-ng>=2.2.2",
"opensearch-py>=2.4.2,<=3.0.0",
"pygelf>=0.4.2",
]

[project.scripts]
parsedmarc = "parsedmarc.cli:_main"
Expand Down

0 comments on commit b33abae

Please sign in to comment.