File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
import sdist_upip
3
3
from setuptools import setup
4
4
5
- VERSION = "1.0.0"
6
-
7
5
8
6
def long_desc_from_readme ():
9
7
with open ('README.rst' , 'r' ) as fd :
@@ -20,7 +18,9 @@ def long_desc_from_readme():
20
18
21
19
setup (
22
20
name = "micropython-py-esp32-ulp" ,
23
- version = VERSION ,
21
+ use_scm_version = {
22
+ 'local_scheme' : 'no-local-version' ,
23
+ },
24
24
description = "Assembler toolchain for the ESP32 ULP co-processor, written in MicroPython" ,
25
25
long_description = long_desc_from_readme (),
26
26
long_description_content_type = 'text/x-rst' ,
@@ -34,6 +34,7 @@ def long_desc_from_readme():
34
34
'License :: OSI Approved :: MIT License' ,
35
35
'Programming Language :: Python :: Implementation :: MicroPython' ,
36
36
],
37
+ setup_requires = ['setuptools_scm' ],
37
38
platforms = ["esp32" , "linux" , "darwin" ],
38
39
cmdclass = {"sdist" : sdist_upip .sdist },
39
40
packages = ["esp32_ulp" ],
You can’t perform that action at this time.
0 commit comments