Skip to content

Commit e0f8c0f

Browse files
committed
Updating long description as per suggestion
1 parent d830332 commit e0f8c0f

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include LICENSE
2-
include CHANGELOG
2+
include CHANGELOG.md
3+
include README.md
34
include requirements/*
45
recursive-exclude tests *

setup.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,22 @@
1717
TEST_REQUIREMENTS = _file.read().splitlines()
1818
TEST_REQUIREMENTS = list(set(REQUIREMENTS + TEST_REQUIREMENTS))
1919

20+
with open(os.path.join(here, 'README.md')) as _file:
21+
README = _file.read()
22+
23+
with open(os.path.join(here, 'CHANGELOG.md')) as _file:
24+
CHANGELOG = _file.read()
25+
26+
about_text = 'Optimizely X Full Stack is A/B testing and feature management for product development teams. ' \
27+
'Experiment in any application. Make every feature on your roadmap an opportunity to learn. ' \
28+
'Learn more at https://www.optimizely.com/products/full-stack/ or see our documentation at ' \
29+
'https://developers.optimizely.com/x/solutions/sdks/reference/index.html?language=python'
30+
2031
setup(
2132
name='optimizely-sdk',
2233
version=__version__,
2334
description='Python SDK for Optimizely X Full Stack.',
24-
long_description='Optimizely X Full Stack is A/B testing and feature management for product development teams. '
25-
'Experiment in any application. Make every feature on your roadmap an opportunity to learn. '
26-
'Learn more at https://www.optimizely.com/products/full-stack/ or see our documentation at '
27-
'https://developers.optimizely.com/x/solutions/sdks/reference/index.html?language=python',
35+
long_description=about_text + '\n\n# Readme: \n' + README + '\n\n# Change Log: \n' + CHANGELOG,
2836
author='Optimizely',
2937
author_email='[email protected]',
3038
url='https://github.com/optimizely/python-sdk',

0 commit comments

Comments
 (0)