File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Please follow the instructions to make a new release of the accessibility pygmen
11
11
- ` python setup.py bdist_wheel --universal `
12
12
- ` python setup.py sdist `
13
13
- ` twine check dist/* `
14
+ - ` twine upload dist/* `
14
15
- ` git tag -a vX.X.X -m 'Release x.x.x' `
15
16
- Update ` VERSION_INFO ` in the ` __init__.py ` add ` dev ` and increment version
16
17
- ` git add && git commit `
Original file line number Diff line number Diff line change 1
- VERSION_INFO = (0 , 0 , 2 , 'dev' )
1
+ VERSION_INFO = (0 , 0 , 2 )
2
2
__version__ = '.' .join (map (str , VERSION_INFO ))
Original file line number Diff line number Diff line change
1
+ import ast
1
2
import os
2
3
from setuptools import setup , find_packages
3
4
@@ -23,9 +24,23 @@ def get_long_description():
23
24
return fp .read ()
24
25
25
26
27
+ def get_version (module = 'a11y_pygments' ):
28
+ """Get version."""
29
+ path = os .path .join (os .path .abspath (__file__ ), module , '__init__.py' )
30
+ with open (path , 'r' ) as f :
31
+ data = f .read ()
32
+ lines = data .split ('\n ' )
33
+ for line in lines :
34
+ if line .startswith ('VERSION_INFO' ):
35
+ version_tuple = ast .literal_eval (line .split ('=' )[- 1 ].strip ())
36
+ version = '.' .join (map (str , version_tuple ))
37
+ break
38
+ return version
39
+
40
+
26
41
setup (
27
42
name = 'accessible-pygments' ,
28
- version = '0.0.1' ,
43
+ version = get_version () ,
29
44
description = 'A collection of accessible pygments styles' ,
30
45
long_description = get_long_description (),
31
46
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments