|
29 | 29 | ST2_COMPONENT = 'st2client'
|
30 | 30 | BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
31 | 31 | REQUIREMENTS_FILE = os.path.join(BASE_DIR, 'requirements.txt')
|
| 32 | +README_FILE = os.path.join(BASE_DIR, 'README.rst') |
32 | 33 |
|
33 | 34 | install_reqs, dep_links = fetch_requirements(REQUIREMENTS_FILE)
|
34 | 35 | apply_vagrant_workaround()
|
35 | 36 |
|
| 37 | +with open(README_FILE) as f: |
| 38 | + readme = f.read() |
| 39 | + |
36 | 40 | setup(
|
37 | 41 | name=ST2_COMPONENT,
|
38 | 42 | version=__version__,
|
39 | 43 | description=('Python client library and CLI for the StackStorm (st2) event-driven '
|
40 | 44 | 'automation platform.'),
|
| 45 | + long_description=readme, |
41 | 46 | author='StackStorm',
|
42 | 47 | author_email='info@stackstorm.com',
|
43 |
| - license='Apache License (2.0)', |
44 | 48 | url='https://stackstorm.com/',
|
45 | 49 | classifiers=[
|
46 | 50 | 'Development Status :: 5 - Production/Stable',
|
|
63 | 67 | 'console_scripts': [
|
64 | 68 | 'st2 = st2client.shell:main'
|
65 | 69 | ]
|
| 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', |
66 | 81 | }
|
67 | 82 | )
|
0 commit comments