Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 2b7fd51

Browse files
committed
appending CHANGES to the description messes up the restructured text rendering on pypi
1 parent 6f00903 commit 2b7fd51

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
here = path.abspath(path.dirname(__file__))
66
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
77
README = f.read()
8-
with open(path.join(here, 'CHANGES.txt'), encoding='utf-8') as f:
9-
CHANGES = f.read()
108
with open(path.join(here, 'atomx', 'version.py')) as f:
119
exec(f.read()) # defines VERSION and API_VERSION
1210

@@ -25,7 +23,7 @@
2523
version=VERSION,
2624

2725
description='python interface for the atomx api on https://api.atomx.com',
28-
long_description=README + '\n\n' + CHANGES,
26+
long_description=README,
2927

3028
packages=find_packages(),
3129
exclude_package_data={'': ['.gitignore']},

0 commit comments

Comments
 (0)