+13
-2
lines changedFilter options
+13
-2
lines changed Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1
+
[options]
2
+
setup_requires =
3
+
setuptools_scm>=3.2.0
4
+
1
5
[flake8]
2
6
max-line-length = 140
3
7
exclude = */migrations/*
Original file line number Diff line number Diff line change
@@ -60,7 +60,11 @@ def _unavailable(self, e):
60
60
61
61
setup(
62
62
name='lazy-object-proxy',
63
-
version='1.4.0',
63
+
use_scm_version={
64
+
'local_scheme': 'dirty-tag',
65
+
'write_to': 'src/lazy_object_proxy/version.py',
66
+
'fallback_version': '1.4.0',
67
+
},
64
68
license='BSD 2-Clause License',
65
69
description='A fast and thorough lazy object proxy.',
66
70
long_description='%s\n%s' % (
Original file line number Diff line number Diff line change
@@ -15,6 +15,9 @@
15
15
else:
16
16
copyreg.constructor(identity)
17
17
18
-
__version__ = "__version__ = '1.4.0'"
18
+
try:
19
+
from ._version import version as __version__
20
+
except ImportError:
21
+
__version__ = '1.4.0'
19
22
20
23
__all__ = "Proxy",
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4