Skip to content

Commit c8e2766

Browse files
committed
Version up (first alpha release)
1 parent 091b9ac commit c8e2766

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ Python API for Vulcan e-journal system. It's based on the mobile app, so you nee
77

88
## Installation
99
You can install `vulcan-api` by `pip`
10-
```
10+
```bash
1111
pip install vulcan-api
1212
```
1313

1414
Or manually
15-
```
15+
```bash
1616
pip install flit
1717
git clone https://bitbucket.org/kapi2289/vulcan-api.git
1818
cd vulcan-api
1919
flit install
2020
```
2121

2222
## Usage
23-
First, you need to register API as a mobile device on https://uonetplus.vulcan.net.pl/(symbol)
23+
First, you need to register API as a mobile device on https://uonetplus.vulcan.net.pl/symbol
2424

2525
![image](https://i.imgur.com/x03Aykd.png)
2626

@@ -59,4 +59,6 @@ users = client.users()
5959
user = users[0]
6060

6161
client.change_user(user)
62-
```
62+
```
63+
64+
For further instructions go to the [documentation](https://vulcan-api.readthedocs.io/).

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = '0.0.9'
29+
release = '0.1.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = "Vulcan UONETPlus Dzienniczek API"
1313
home-page = "https://bitbucket.org/kapi2289/vulcan-api"
1414
classifiers = [
1515
"License :: OSI Approved :: MIT License",
16-
"Development Status :: 2 - Pre-Alpha",
16+
"Development Status :: 3 - Alpha",
1717
"Intended Audience :: Developers",
1818
"License :: OSI Approved :: MIT License",
1919
"Natural Language :: Polish",
@@ -32,9 +32,7 @@ requires = [
3232
requires-python = ">=3.0, <4.0"
3333

3434
[tool.flit.metadata.requires-extra]
35-
dev = ["flit"]
3635
test = ["pytest"]
3736

3837
[tool.flit.metadata.urls]
39-
Repository = "https://bitbucket.org/kapi2289/vulcan-api"
40-
Documentation = "https://vulcan-api.readthedocs.io/en/latest/"
38+
Documentation = "https://vulcan-api.readthedocs.io/"

vulcan/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .vulcan import *
66

77
__title__ = 'vulcan'
8-
__version__ = '0.0.9'
8+
__version__ = '0.1.0'
99
__description__ = 'API for Vulcan e-journal'
1010
__doc__ = __description__
1111

0 commit comments

Comments
 (0)