Skip to content

Commit f38cc21

Browse files
committed
Updating description and adding long description (#124)
1 parent d320d34 commit f38cc21

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
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: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +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__,
23-
description="SDK for Optimizely's Full Stack Python project.",
34+
description='Python SDK for Optimizely X Full Stack.',
35+
long_description=about_text + '\n\n# Readme: \n' + README + '\n\n# Change Log: \n' + CHANGELOG,
2436
author='Optimizely',
2537
author_email='[email protected]',
2638
url='https://github.com/optimizely/python-sdk',

0 commit comments

Comments
 (0)