|
31 | 31 | version = parse_version_string(INIT_FILE) |
32 | 32 | install_reqs, dep_links = fetch_requirements(REQUIREMENTS_FILE) |
33 | 33 |
|
| 34 | +with open("README.md", "r") as fh: |
| 35 | + long_description = fh.read() |
| 36 | + |
34 | 37 | setup( |
35 | 38 | name='st2-auth-backend-flat-file', |
36 | 39 | version=version, |
37 | 40 | description='StackStorm authentication backend which reads credentials from a htpasswd compatible file on disk.', |
| 41 | + long_description=long_description, |
| 42 | + long_description_content_type="text/markdown", |
38 | 43 | author='StackStorm, Inc.', |
39 | 44 | |
40 | 45 | url='https://github.com/StackStorm/st2-auth-backend-flat-file', |
41 | | - license='Apache License (2.0)', |
42 | 46 | download_url='https://github.com/StackStorm/st2-auth-backend-flat-file/tarball/master', |
43 | 47 | classifiers=[ |
44 | 48 | 'Development Status :: 3 - Alpha', |
|
47 | 51 | 'Programming Language :: Python :: 2', |
48 | 52 | 'Programming Language :: Python :: 2.7', |
49 | 53 | 'Programming Language :: Python :: 3', |
50 | | - 'Programming Language :: Python :: 3.4', |
| 54 | + 'Programming Language :: Python :: 3.5', |
| 55 | + 'Programming Language :: Python :: 3.6', |
| 56 | + 'Programming Language :: Python :: 3.7', |
| 57 | + 'Programming Language :: Python :: 3.8', |
51 | 58 | 'Intended Audience :: Developers', |
52 | 59 | 'Environment :: Console', |
53 | 60 | ], |
|
0 commit comments