Skip to content

Commit

Permalink
Merge pull request #1 from phyng/dev
Browse files Browse the repository at this point in the history
chore(project): rename to scilib
  • Loading branch information
phyng committed Apr 5, 2020
2 parents d992a70 + 960cc92 commit cc2abe7
Show file tree
Hide file tree
Showing 14 changed files with 25 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
- name: Test with pytest
run: |
source $HOME/.poetry/env
python -m unittest discover -v -s libs/
python -m unittest discover -v -s scilib/
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@

# libs
# scilib

Some library to extend Python Standard Library

[![Github](https://github.com/phyng/libs/workflows/test/badge.svg)](https://github.com/phyng/libs/actions) [![Pypi](https://img.shields.io/pypi/v/libs.svg?style=flat&label=PyPI)](https://pypi.org/project/libs/)
[![Github](https://github.com/phyng/scilib/workflows/test/badge.svg)](https://github.com/phyng/scilib/actions) [![Pypi](https://img.shields.io/pypi/v/scilib.svg?style=flat&label=PyPI)](https://pypi.org/project/scilib/)

## documentation

https://phyng.com/libs/
https://phyng.com/scilib/

## install

```bash
# use pip
pip install libs
pip install scilib

# or use poetry
poetry add libs
poetry add scilib
```

## test
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "libs",
"name": "scilib",
"version": "0.0.9",
"description": "Packages of tools",
"main": "index.js",
"scripts": {
"test": "python -m unittest discover -v -s libs/",
"test_coverage": "coverage run --rcfile=./tox.ini -m unittest discover -v -s libs/ && coverage combine && coverage html -i",
"test": "python -m unittest discover -v -s scilib/",
"test_coverage": "coverage run --rcfile=./tox.ini -m unittest discover -v -s scilib/ && coverage combine && coverage html -i",
"upload": "rm dist/* && python3 setup.py sdist bdist_wheel && twine upload dist/*",
"poetry_publish": "poetry build && poetry publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phyng/libs.git"
"url": "git+https://github.com/phyng/scilib.git"
},
"author": "phyng",
"license": "ISC",
"bugs": {
"url": "https://github.com/phyng/libs/issues"
"url": "https://github.com/phyng/scilib/issues"
},
"homepage": "https://github.com/phyng/libs#readme"
"homepage": "https://github.com/phyng/scilib#readme"
}
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tool.poetry]
name = "libs"
name = "scilib"
version = "0.0.9"
description = "Packages of tools"
description = "scilib"
license = "MIT"
readme = "README.md"
authors = ["phyng <phyngk@gmail.com>"]
homepage = "https://github.com/phyng/libs"
repository = "https://github.com/phyng/libs"
homepage = "https://github.com/phyng/scilib"
repository = "https://github.com/phyng/scilib"
classifiers = [
"Operating System :: OS Independent",
]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
long_description = fh.read()

setuptools.setup(
name="libs",
name="scilib",
version="0.0.9",
author="phyng",
author_email="phyngk@gmail.com",
description="Packages of tools",
description="scilib",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phyng/libs",
url="https://github.com/phyng/scilib",
packages=setuptools.find_packages(),
classifiers=(
"Operating System :: OS Independent",
Expand Down
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# -- Project information -----------------------------------------------------

project = 'libs'
project = 'scilib'
copyright = '2020, phyng'
author = 'phyng'

Expand Down
10 changes: 5 additions & 5 deletions source/index.rst
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
.. libs documentation master file, created by
.. scilib documentation master file, created by
sphinx-quickstart on Sat Apr 4 22:32:56 2020.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to libs's documentation!
Welcome to scilib's documentation!
================================

.. toctree::
:maxdepth: 2
:caption: Contents:


libs
scilib
========

.. automodule:: libs.iterlib
.. automodule:: scilib.iterlib
:members:


iolib
===========

.. automodule:: libs.iolib.file
.. automodule:: scilib.iolib.file
:members:


Expand Down

0 comments on commit cc2abe7

Please sign in to comment.