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 473dbc4
Showing 1 changed file with 18 additions and 24 deletions.
42 changes: 18 additions & 24 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]",
"pytest>=8",
"pytest-cov>=4",
"coverage",
"types-orjson",
"types-requests",
"coverage",
"monty[optional]",
"pytest>=8",
"pytest-cov>=4",
"types-orjson",
"types-requests",
]
dev = ["ipython"]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
json = [
"bson",
"orjson",
"pandas",
"pydantic",
"pint",
"torch",
]
multiprocessing = ["tqdm"]
optional = ["monty[dev,json,multiprocessing,serialization]"]
serialization = ["msgpack"]

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

0 comments on commit 473dbc4

Please sign in to comment.