File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 11
11
with open (os .path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
12
12
long_description = f .read ()
13
13
14
+ scm_version = {
15
+ 'root' : '../..' ,
16
+ 'relative_to' : __file__ ,
17
+ 'git_describe_command' : 'git describe --dirty --tags --long --match "plugin-ext-test*"' ,
18
+ }
19
+
14
20
setuptools .setup (
15
21
name = 'cmd2-ext-test' ,
16
- version = '0.2.0' ,
17
- # TODO: Figure out why this doesn't work on CI Server
18
- # use_scm_version={
19
- # 'root': '../..',
20
- # 'relative_to': __file__,
21
- # 'git_describe_command': 'git describe --dirty --tags --long --match plugin-ext-test*'
22
- # },
22
+ version = scm_version ,
23
23
24
24
description = 'External test plugin for cmd2. Allows for external invocation of commands as if from a cmd2 pyscript' ,
25
25
long_description = long_description ,
35
35
36
36
python_requires = '>=3.5' ,
37
37
install_requires = ['cmd2 >= 0.9.4, <=2' ],
38
- setup_requires = ['setuptools_scm >= 3.0' ],
38
+ setup_requires = [
39
+ 'setuptools >= 42' ,
40
+ 'setuptools_scm >= 3.4' ],
39
41
40
42
classifiers = [
41
43
'Development Status :: 5 - Production/Stable' ,
You can’t perform that action at this time.
0 commit comments