Skip to content

Commit

Permalink
rename project to taipy-config
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinAV committed Jun 21, 2022
1 parent e522c52 commit 03a3cb9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
release:
needs: [test-package]
timeout-minutes: 20
name: Release taipy-toolkit Package
name: Release taipy-config Package
runs-on: ubuntu-18.04

steps:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ attached to the `current sprint`. Please, do not work on it, the Taipy team is o

Taipy is organised in five main repositories:

- [taipy-toolkit](https://github.com/Avaiga/taipy-toolkit).
- [taipy-config](https://github.com/Avaiga/taipy-config).
- [taipy-core](https://github.com/Avaiga/taipy-core).
- [taipy-gui](https://github.com/Avaiga/taipy-gui).
- [taipy-rest](https://github.com/Avaiga/taipy-rest).
Expand Down
18 changes: 9 additions & 9 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Installation

The latest stable version of _taipy-toolkit_ is available through _pip_:
The latest stable version of _taipy-config_ is available through _pip_:
```
pip install taipy-toolkit
pip install taipy-config
```

## Development version

You can install the development version of _taipy-toolkit_ with _pip_ and _git_:
You can install the development version of _taipy-config_ with _pip_ and _git_:
```
pip install git+https://[email protected]/Avaiga/taipy-toolkit
pip install git+https://[email protected]/Avaiga/taipy-config
```

## Work with the _taipy-toolkit_ code
## Work with the _taipy-config_ code
```
git clone https://github.com/Avaiga/taipy-toolkit.git
cd taipy-toolkit
git clone https://github.com/Avaiga/taipy-config.git
cd taipy-config
pip install .
```

If you want to run tests, please install `Pipenv`:
```
pip install pipenv
git clone https://github.com/Avaiga/taipy-toolkit.git
cd taipy-toolkit
git clone https://github.com/Avaiga/taipy-config.git
cd taipy-config
pipenv install --dev
pipenv run pytest
```
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Taipy toolkit
# Taipy config

## License
Copyright 2022 Avaiga Private Limited
Expand All @@ -14,33 +14,33 @@ specific language governing permissions and limitations under the License.
## Usage
- [License](#license)
- [Usage](#usage)
- [Taipy toolkit](#what-is-taipy-toolkit)
- [Taipy config](#what-is-taipy-config)
- [Installation](#installation)
- [Contributing](#contributing)
- [Code of conduct](#code-of-conduct)
- [Directory Structure](#directory-structure)

## What is Taipy toolkit
## What is Taipy config

Taipy is a Python library for creating Business Applications. More information on our
[website](https://www.taipy.io). Taipy is split into multiple repositories including _taipy-toolkit_ to let users
[website](https://www.taipy.io). Taipy is split into multiple repositories including _taipy-config_ to let users
install the minimum they need.

[Taipy toolkit](https://github.com/Avaiga/taipy-toolkit) is dedicated to help the user configure a Taipy application.
[Taipy config](https://github.com/Avaiga/taipy-config) is dedicated to help the user configure a Taipy application.

A more in depth documentation of taipy can be found [here](https://docs.taipy.io).

## Installation

Want to install _Taipy toolkit_? Check out our [`INSTALLATION.md`](INSTALLATION.md) file.
Want to install _Taipy config_? Check out our [`INSTALLATION.md`](INSTALLATION.md) file.

## Contributing

Want to help build _Taipy toolkit_? Check out our [`CONTRIBUTING.md`](CONTRIBUTING.md) file.
Want to help build _Taipy config_? Check out our [`CONTRIBUTING.md`](CONTRIBUTING.md) file.

## Code of conduct

Want to be part of the _Taipy toolkit_ community? Check out our [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) file.
Want to be part of the _Taipy config_ community? Check out our [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) file.

## Directory Structure

Expand All @@ -49,11 +49,11 @@ Want to be part of the _Taipy toolkit_ community? Check out our [`CODE_OF_CONDUC
entrypoint for configuring a Taipy Core application.
- `logger`: Taipy logger.
- `tests`: Unit tests following the `taipy/` structure.
- `CODE_OF_CONDUCT.md`: Code of conduct for members and contributors of _taipy-toolkit_.
- `CONTRIBUTING.md`: Instructions to contribute to _taipy-toolkit_.
- `INSTALLATION.md`: Instructions to install _taipy-toolkit_.
- `CODE_OF_CONDUCT.md`: Code of conduct for members and contributors of _taipy-config_.
- `CONTRIBUTING.md`: Instructions to contribute to _taipy-config_.
- `INSTALLATION.md`: Instructions to install _taipy-config_.
- `LICENSE`: The Apache 2.0 License.
- `Pipfile`: File used by the Pipenv virtual environment to manage project dependencies.
- `README.md`: Current file.
- `setup.py`: The setup script managing building, distributing, and installing _taipy-toolkit_.
- `setup.py`: The setup script managing building, distributing, and installing _taipy-config_.
- `tox.ini`: Contains test scenarios to be run.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
long_description=readme,
long_description_content_type="text/markdown",
license="Apache License 2.0",
keywords="taipy-toolkit",
name="taipy-toolkit",
keywords="taipy-config",
name="taipy-config",
package_dir={"": "src"},
packages=find_namespace_packages(where="src") + find_packages(include=["taipy", "taipy.config", "taipy.config.*", "taipy.logger", "taipy.logger.*"]),
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/avaiga/taipy-toolkit",
url="https://github.com/avaiga/taipy-config",
version="1.0.0.dev",
zip_safe=False,
)

0 comments on commit 03a3cb9

Please sign in to comment.