File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 11include LICENSE
2- include CHANGELOG
2+ include CHANGELOG.md
3+ include README.md
34include requirements/*
45recursive-exclude tests *
Original file line number Diff line number Diff line change 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+
2031setup (
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 = 'developers@optimizely.com' ,
2638 url = 'https://github.com/optimizely/python-sdk' ,
You can’t perform that action at this time.
0 commit comments