File tree 2 files changed +14
-5
lines changed 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
1
include LICENSE
2
- include CHANGELOG
2
+ include CHANGELOG.md
3
+ include README.md
3
4
include requirements/*
4
5
recursive-exclude tests *
Original file line number Diff line number Diff line change 17
17
TEST_REQUIREMENTS = _file .read ().splitlines ()
18
18
TEST_REQUIREMENTS = list (set (REQUIREMENTS + TEST_REQUIREMENTS ))
19
19
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
+
20
31
setup (
21
32
name = 'optimizely-sdk' ,
22
33
version = __version__ ,
23
34
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 ,
28
36
author = 'Optimizely' ,
29
37
30
38
url = 'https://github.com/optimizely/python-sdk' ,
You can’t perform that action at this time.
0 commit comments