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.
2 parents 8220fc6 + fc2a001 commit 435ff65Copy full SHA for 435ff65
ldapauthenticator/__init__.py
@@ -1,4 +1 @@
1
from ldapauthenticator.ldapauthenticator import LDAPAuthenticator
2
-
3
4
-__version__ = '1.2.0'
setup.py
@@ -1,6 +1,11 @@
from setuptools import setup
-from ldapauthenticator import __version__ as version
+
+version = '1.2.0'
5
6
7
+with open("./ldapauthenticator/__init__.py", 'a') as f:
8
+ f.write("\n__version__ = '{}'\n".format(version))
9
10
11
setup(
0 commit comments