Skip to content

Commit 632a07e

Browse files
authored
Merge pull request #5064 from StackStorm/improve-st2client-homepage
Improve st2client homepage
2 parents 352d149 + 1c87cf4 commit 632a07e

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

st2client/setup.py

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,22 @@
2929
ST2_COMPONENT = 'st2client'
3030
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
3131
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')
32+
README_FILE = os.path.join(BASE_DIR, 'README.rst')
3233

3334
install_reqs, dep_links = fetch_requirements(REQUIREMENTS_FILE)
3435
apply_vagrant_workaround()
3536

37+
with open(README_FILE) as f:
38+
readme = f.read()
39+
3640
setup(
3741
name=ST2_COMPONENT,
3842
version=__version__,
3943
description=('Python client library and CLI for the StackStorm (st2) event-driven '
4044
'automation platform.'),
45+
long_description=readme,
4146
author='StackStorm',
4247
author_email='info@stackstorm.com',
43-
license='Apache License (2.0)',
4448
url='https://stackstorm.com/',
4549
classifiers=[
4650
'Development Status :: 5 - Production/Stable',
@@ -63,5 +67,16 @@
6367
'console_scripts': [
6468
'st2 = st2client.shell:main'
6569
]
70+
},
71+
project_urls={
72+
'Pack Exchange': 'https://exchange.stackstorm.org',
73+
'Repository': 'https://github.com/StackStorm/st2',
74+
'Documentation': 'https://docs.stackstorm.com',
75+
'Community': 'https://stackstorm.com/community-signup',
76+
'Questions': 'https://forum.stackstorm.com/',
77+
'Donate': 'https://funding.communitybridge.org/projects/stackstorm',
78+
'News/Blog': 'https://stackstorm.com/blog',
79+
'Security': 'https://docs.stackstorm.com/latest/security.html',
80+
'Bug Reports': 'https://github.com/StackStorm/st2/issues',
6681
}
6782
)

0 commit comments

Comments
 (0)