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 0b21543 + 32302f0 commit c096d34Copy full SHA for c096d34
oidc_provider/version.py
@@ -0,0 +1 @@
1
+__version__ = '0.6.2'
setup.py
@@ -4,13 +4,16 @@
4
setup,
5
)
6
7
+version = {}
8
+with open("./oidc_provider/version.py") as fp:
9
+ exec(fp.read(), version)
10
11
# allow setup.py to be run from any path
12
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
13
14
setup(
15
name='django-oidc-provider',
- version='0.6.2',
16
+ version=version['__version__'],
17
packages=find_packages(),
18
include_package_data=True,
19
license='MIT License',
0 commit comments