Skip to content

Commit

Permalink
Merge branch 'release/v0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
knktc committed Sep 9, 2018
2 parents e8110ba + 533b777 commit 6c34b37
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.1.1] - 2018-09-09

### Added

- modify setup.py and now you can install package by PyPI


## [0.1.0] - 2018-09-09

### Added

- initial version(you can use this storage backend to upload and download file with **Qingstor**)
- add a demo site
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,22 @@ A Django storage backend with **Qingstor**.

## Installation

Clone code, and run following commands to install:
*Using venv is highly recommended.*

Install by PyPI:

```bash
cd django_qingstor_storage
python setup.py install

pip install django-qingstor-storage

```

*Using venv is highly recommended.*
Install by source code, just clone the code, and run following commands to install:

*PYPI is on the way...*
```bash
cd django_qingstor_storage
python setup.py install
```

## Settings

Expand Down
19 changes: 15 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
from setuptools import setup

with open('README.md', 'r') as fh:
long_description = fh.read()

setup(
name='django_qingstor_storage',
version='0.1',
version='0.1.1',
packages=['django_qingstor_storage'],
url='https://git./knktc/django-qingstor-storage',
license='Apache License 2.0',
url='https://github.com/knktc/django-qingstor-storage',
author='knktc',
author_email='me@knktc.com',
description='Django storage with Qingstor',
install_requires=['django>=2.0', 'qingstor-sdk>=2.2.6', ]
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['django>=2.0', 'qingstor-sdk>=2.2.6', ],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Intended Audience :: Developers",
],
)

0 comments on commit 6c34b37

Please sign in to comment.