File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 7
7
.vscode
8
8
.cache
9
9
* .egg-info
10
+ .eggs
10
11
dist
11
12
build
Original file line number Diff line number Diff line change 1
1
from .wrapper import scuttle
2
-
3
- __version__ = "0.2.0"
Original file line number Diff line number Diff line change 3
3
except ImportError :
4
4
from distutils .core import setup
5
5
6
- from scuttle import __version__
7
-
8
6
from os import path
9
7
10
8
this_directory = path .abspath (path .dirname (__file__ ))
13
11
14
12
setup (
15
13
name = 'scuttle-api-wrapper' ,
16
- version = __version__ ,
14
+ use_scm_version = True ,
17
15
packages = ['scuttle' , 'scuttle.versions' ],
18
16
url = "http://github.com/scuttle/python-scuttle" ,
19
17
license = "MIT" ,
22
20
description = "Python wrapper for SCUTTLE API." ,
23
21
long_description = long_description ,
24
22
long_description_content_type = 'text/markdown' ,
23
+ setup_requires = ["setuptools_scm" ],
25
24
install_requires = ["requests" , "wrapt" ],
26
25
classifiers = [
27
26
"Programming Language :: Python :: 3.8" ,
You can’t perform that action at this time.
0 commit comments