Skip to content

Commit

Permalink
Fix for PEP 508 package definition for VCS systems
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Mar 9, 2021
1 parent 9ba9945 commit edaeed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 269 deletions.
264 changes: 0 additions & 264 deletions python_ldap_manager.py

This file was deleted.

8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import setuptools, sys
import setuptools
from pathlib import Path
import python_ldap_manager

VERSION = "2.1.0"
python_ldap_version = "3.3.1"

# Build and install python-ldap without SASL requirements
python_ldap_manager.install_custom_pyldap(sys.executable, python_ldap_version=python_ldap_version)

setuptools.setup(
name="webqueue-api",
version=VERSION,
Expand All @@ -27,6 +23,8 @@
"Flask-JWT-Extended",
# Prevent upgrade to 2.x until Flask-JWT-Extended is updated to support it
"PyJWT == 1.*",
# Custom version of python-ldap without SASL requirements
"python-ldap @ git+https://github.itap.purdue.edu/ECN/python-ldap/@python-ldap-3.3.1",

# API Documentation
"mkdocs",
Expand Down

0 comments on commit edaeed3

Please sign in to comment.