Skip to content

Commit

Permalink
Move extras_require to setup.cfg (#601)
Browse files Browse the repository at this point in the history
* Move extras_require to setup.cfg

* Move install_requires to setup.cfg
  • Loading branch information
cdce8p authored Mar 3, 2024
1 parent 8119abb commit 77b4d3f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 10 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,16 @@ packages =
console_scripts =
bimmerconnected = bimmer_connected.cli:main

[options]
install_requires =
httpx
pycryptodome>=3.4
pyjwt>=2.1.0

[options.extras_require]
china =
Pillow

[options.package_data]
bimmer_connected =
py.typed
Expand Down
10 changes: 0 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,4 @@
setup(
setup_requires=["pbr"],
pbr=True,
install_requires=[
"httpx",
"pycryptodome>=3.4",
"pyjwt>=2.1.0",
],
extras_require={
"china": [
"Pillow",
],
},
)

0 comments on commit 77b4d3f

Please sign in to comment.