Skip to content

Commit a5c2c9a

Browse files
akbakb
authored andcommitted
Add .[dev]
1 parent 5556b59 commit a5c2c9a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
with open(PROJECT_ROOT / "requirements.in") as f:
99
INSTALL_REQUIRES = f.read().splitlines()
1010

11+
with open(PROJECT_ROOT / "dev-requirements.in") as f:
12+
DEV_INSTALL_REQUIRES = f.read().splitlines()
1113

1214
setuptools.setup(
1315
name="mario",
@@ -44,4 +46,5 @@
4446
"console_scripts": ["mario = mario.cli:cli"],
4547
"mario_plugins": ["basic = mario.plugins"],
4648
},
49+
extras={"dev": DEV_INSTALL_REQUIRES},
4750
)

0 commit comments

Comments
 (0)