use pypa build instead of setup.py build and move ldap to extras

This commit is contained in:
Nick Sweeting 2023-10-19 16:44:44 -07:00
parent 4b26ab9d1f
commit b6113cc00c
2 changed files with 11 additions and 5 deletions

View file

@ -47,13 +47,16 @@ INSTALL_REQUIRES = [
"croniter>=0.3.34",
"w3lib>=1.22.0",
"ipython>5.0.0",
"django-auth-ldap>=4.1.0"
]
EXTRAS_REQUIRE = {
'sonic': [
"sonic-client>=0.0.5",
],
'ldap': [
"django-auth-ldap>=4.1.0",
],
'dev': [
"build",
"setuptools",
"twine",
"wheel",