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 8220fc6 commit 847b3bcCopy full SHA for 847b3bc
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("__version__ = '{}'".format(version))
9
10
11
setup(
0 commit comments