Skip to content

Commit 55fb931

Browse files
authored
Merge pull request #5 from parisk/version/0.3
Release: 0.3
2 parents 0bb7bcb + 0186e65 commit 55fb931

File tree

12 files changed

+343
-92
lines changed

12 files changed

+343
-92
lines changed

.github/workflows/pypi.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: PyPI
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: '3.8'
16+
- name: Install dependencies
17+
run: |
18+
pip install --upgrade pip==20.2.4 poetry==1.1.4
19+
poetry config virtualenvs.create false
20+
poetry install
21+
- name: Build and publish
22+
run: |
23+
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
24+
poetry publish --build

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 SourceLair, Private Company
3+
Copyright (c) 2020 Paris Kasidiaris <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 0 additions & 5 deletions
This file was deleted.

Pipfile

Lines changed: 0 additions & 10 deletions
This file was deleted.

Pipfile.lock

Lines changed: 0 additions & 46 deletions
This file was deleted.

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Django Prose
22

3-
TBA
3+
Wonderful rich-text editing in Django.
4+
5+
## Install
6+
7+
```console
8+
pip install django-prose
9+
```
10+
411

512
---
613

714
<p align="center">
8-
<i>Built with ❤️ by <a href="https://www.sourcelair.com">SourceLair</a> in Athens, Greece.</i>
15+
<i>Built with ❤️ in Athens, Greece.</i>
916
</p>

poetry.lock

Lines changed: 262 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)