File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,9 @@ Please follow the instructions to make a new release of the accessibility pygmen
6
6
- ` git clean -xdfi `
7
7
- Update ` CHANGELOG.md ` with ` gitchangelog `
8
8
- ` git add && git commit -m "Update changelog" `
9
+ - Update ` VERSION_INFO ` in the ` __init__.py ` removing ` dev `
10
+ - ` git add && git commit -m "Release vX.X.X" `
11
+ - ` python setup.py bdist_wheel --universal `
12
+ - ` python setup.py sdist `
13
+ - ` twine check dist/* `
14
+
Original file line number Diff line number Diff line change
1
+ VERSION_INFO = (0 , 0 , 1 )
2
+ __version__ = '.' .join (map (str , VERSION_INFO ))
Original file line number Diff line number Diff line change 1
- from gettext import find
2
- from importlib .metadata import entry_points
1
+ import os
3
2
from setuptools import setup , find_packages
4
3
5
4
from a11y_pygments .utils .utils import find_all_themes_packages
@@ -17,10 +16,19 @@ def find_entrypoints():
17
16
return entrypoints
18
17
19
18
19
+ def get_long_description ():
20
+ with open (os .path .join (
21
+ os .path .dirname (os .path .abspath (__file__ )), 'README.md'
22
+ ), encoding = 'utf8' ) as fp :
23
+ return fp .read ()
24
+
25
+
20
26
setup (
21
27
name = 'accessible-pygments' ,
22
28
version = '0.0.1' ,
23
- description = 'A Collection of Accessible Pygments Styles' ,
29
+ description = 'A collection of accessible pygments styles' ,
30
+ long_description = get_long_description (),
31
+ long_description_content_type = 'text/markdown' ,
24
32
license = 'BSD' ,
25
33
keywords = 'pygments style accessible a11' ,
26
34
You can’t perform that action at this time.
0 commit comments