Skip to content

Commit 41ab2b4

Browse files
authored
Merge pull request #7 from StackStorm/pypi-updates
PyPI updates
2 parents 171d509 + dfdc4d0 commit 41ab2b4

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ dist/
33
build/
44
.tox/
55
.eggs/
6+
__pycache__/

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,18 @@
3131
version = parse_version_string(INIT_FILE)
3232
install_reqs, dep_links = fetch_requirements(REQUIREMENTS_FILE)
3333

34+
with open("README.md", "r") as fh:
35+
long_description = fh.read()
36+
3437
setup(
3538
name='st2-auth-backend-flat-file',
3639
version=version,
3740
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",
3843
author='StackStorm, Inc.',
3944
author_email='[email protected]',
4045
url='https://github.com/StackStorm/st2-auth-backend-flat-file',
41-
license='Apache License (2.0)',
4246
download_url='https://github.com/StackStorm/st2-auth-backend-flat-file/tarball/master',
4347
classifiers=[
4448
'Development Status :: 3 - Alpha',
@@ -47,7 +51,10 @@
4751
'Programming Language :: Python :: 2',
4852
'Programming Language :: Python :: 2.7',
4953
'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',
5158
'Intended Audience :: Developers',
5259
'Environment :: Console',
5360
],

st2auth_flat_file_backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
'FlatFileAuthenticationBackend'
2222
]
2323

24-
__version__ = '0.1.0'
24+
__version__ = '0.1.1'

0 commit comments

Comments
 (0)