Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion st2client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,22 @@
ST2_COMPONENT = 'st2client'
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')
README_FILE = os.path.join(BASE_DIR, 'README.rst')

install_reqs, dep_links = fetch_requirements(REQUIREMENTS_FILE)
apply_vagrant_workaround()

with open(README_FILE) as f:
readme = f.read()

setup(
name=ST2_COMPONENT,
version=__version__,
description=('Python client library and CLI for the StackStorm (st2) event-driven '
'automation platform.'),
long_description=readme,
author='StackStorm',
author_email='[email protected]',
license='Apache License (2.0)',
url='https://stackstorm.com/',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -63,5 +67,16 @@
'console_scripts': [
'st2 = st2client.shell:main'
]
},
project_urls={
'Pack Exchange': 'https://exchange.stackstorm.org',
'Repository': 'https://github.com/StackStorm/st2',
'Documentation': 'https://docs.stackstorm.com',
'Community': 'https://stackstorm.com/community-signup',
'Questions': 'https://forum.stackstorm.com/',
'Donate': 'https://funding.communitybridge.org/projects/stackstorm',
'News/Blog': 'https://stackstorm.com/blog',
'Security': 'https://docs.stackstorm.com/latest/security.html',
'Bug Reports': 'https://github.com/StackStorm/st2/issues',
}
)