Skip to content

Commit 5d7dc12

Browse files
committed
Release v0.0.1
1 parent 1c8db46 commit 5d7dc12

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

RELEASE.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ Please follow the instructions to make a new release of the accessibility pygmen
66
- `git clean -xdfi`
77
- Update `CHANGELOG.md` with `gitchangelog`
88
- `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+

a11y_pygments/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VERSION_INFO = (0, 0, 1)
2+
__version__ = '.'.join(map(str, VERSION_INFO))

setup.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from gettext import find
2-
from importlib.metadata import entry_points
1+
import os
32
from setuptools import setup, find_packages
43

54
from a11y_pygments.utils.utils import find_all_themes_packages
@@ -17,10 +16,19 @@ def find_entrypoints():
1716
return entrypoints
1817

1918

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+
2026
setup (
2127
name='accessible-pygments',
2228
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',
2432
license='BSD',
2533
keywords='pygments style accessible a11',
2634

0 commit comments

Comments
 (0)