Skip to content

Commit

Permalink
sort dependencies by alphabet order
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Oct 20, 2024
1 parent cf8a260 commit a5fc5c4
Showing 1 changed file with 13 additions and 19 deletions.
32 changes: 13 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,36 +25,30 @@ dependencies = [
version = "2024.7.30"

[project.optional-dependencies]
json = [
"pydantic",
"orjson",
"bson",
"pandas",
"torch",
"pint",
]
serialization = [
"msgpack",
]
multiprocessing = [
"tqdm",
]
dev = [
"ipython",
]

ci = [
"monty[json,serialization,multiprocessing,dev]",
"monty[optional]",
"pytest>=8",
"pytest-cov>=4",
"coverage",
"types-orjson",
"types-requests",
]
dev = ["ipython"]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
json = [
"pydantic",
"orjson",
"bson",
"pandas",
"torch",
"pint",
]
multiprocessing = ["tqdm"]
optional = ["monty[json,serialization,multiprocessing,dev]"]
serialization = ["msgpack"]

[tool.setuptools.packages.find]
where = ["src"]
Expand Down

0 comments on commit a5fc5c4

Please sign in to comment.