We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5556b59 commit a5c2c9aCopy full SHA for a5c2c9a
setup.py
@@ -8,6 +8,8 @@
8
with open(PROJECT_ROOT / "requirements.in") as f:
9
INSTALL_REQUIRES = f.read().splitlines()
10
11
+with open(PROJECT_ROOT / "dev-requirements.in") as f:
12
+ DEV_INSTALL_REQUIRES = f.read().splitlines()
13
14
setuptools.setup(
15
name="mario",
@@ -44,4 +46,5 @@
44
46
"console_scripts": ["mario = mario.cli:cli"],
45
47
"mario_plugins": ["basic = mario.plugins"],
48
},
49
+ extras={"dev": DEV_INSTALL_REQUIRES},
50
)
0 commit comments