Skip to content

Commit

Permalink
Use the RADME on PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles committed Apr 2, 2024
1 parent e087a3b commit ba12dcc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Build docs with sphinx
if: "matrix.python-version == '3.8'"
run: |
pip install -U sphinx sphinx_rtd_theme
pip install -r docs/requirements.txt
sphinx-build -W -b html docs docs/_build/html
- name: Build packages
if: "matrix.python-version == '3.8'"
Expand Down
29 changes: 2 additions & 27 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,2 @@
# What we want
Sphinx==6.2.1

# What we get
alabaster==0.7.13
Babel==2.12.1
certifi==2023.7.22
charset-normalizer==3.2.0
docutils==0.19
idna==3.4
imagesize==1.4.1
importlib-metadata==6.8.0
Jinja2==3.1.3
MarkupSafe==2.1.3
packaging==23.1
Pygments==2.16.1
pytz==2023.3
requests==2.31.0
snowballstemmer==2.2.0
sphinxcontrib-applehelp==1.0.4
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.1
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
urllib3==2.0.7
zipp==3.16.2
Sphinx
sphinx_rtd_theme
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@

description = "Pure Python reader/writer for Dan J. Berstein's CDB format."

with open('README.rst', 'rt') as f:
long_description = f.read()

setup(
author='David Wilson',
author_email='[email protected]',
description=description,
long_description=description,
long_description=long_description,
long_description_content_type='text/x-rst',
download_url='https://github.com/dw/python-pure-cdb',
keywords='cdb file format appengine database db',
Expand Down

0 comments on commit ba12dcc

Please sign in to comment.