File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 77.vscode
88.cache
99* .egg-info
10+ .eggs
1011dist
1112build
Original file line number Diff line number Diff line change 11from .wrapper import scuttle
2-
3- __version__ = "0.2.0"
Original file line number Diff line number Diff line change 33except ImportError :
44 from distutils .core import setup
55
6- from scuttle import __version__
7-
86from os import path
97
108this_directory = path .abspath (path .dirname (__file__ ))
1311
1412setup (
1513 name = 'scuttle-api-wrapper' ,
16- version = __version__ ,
14+ use_scm_version = True ,
1715 packages = ['scuttle' , 'scuttle.versions' ],
1816 url = "http://github.com/scuttle/python-scuttle" ,
1917 license = "MIT" ,
2220 description = "Python wrapper for SCUTTLE API." ,
2321 long_description = long_description ,
2422 long_description_content_type = 'text/markdown' ,
23+ setup_requires = ["setuptools_scm" ],
2524 install_requires = ["requests" , "wrapt" ],
2625 classifiers = [
2726 "Programming Language :: Python :: 3.8" ,
You can’t perform that action at this time.
0 commit comments