Skip to content

Commit 9fd7fa6

Browse files
chore: add pyproject.toml and replace tests_require with extras_require (#185)
Signed-off-by: Balram Choudhary <[email protected]>
1 parent f713546 commit 9fd7fa6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=42", "wheel"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,7 @@
5858
]
5959
},
6060
zip_safe=False,
61-
tests_require=['nose >= 0.11'],
61+
extras_require={
62+
"dev": ["nose>=0.11"]
63+
}
6264
)

0 commit comments

Comments
 (0)