Metadata-Version: 2.4
Name: pyspread
Version: 2.4.4
Summary: Pyspread is a non-traditional spreadsheet application that is based on and written in the programming language Python.
Home-page: https://pyspread.gitlab.io
Author: Martin Manns
Author-email: mmanns@gmx.net
License: GPL v3 :: GNU General Public License
Project-URL: Bug Tracker, https://gitlab.com/pyspread/pyspread/issues
Project-URL: Documentation, https://pyspread.gitlab.io/docs.html
Project-URL: Source Code, https://gitlab.com/pyspread/pyspread
Keywords: spreadsheet,pyspread
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: numpy>=1.1
Requires-Dist: PyQt6>=6.4
Requires-Dist: setuptools>=40.0
Requires-Dist: markdown2>=2.3
Provides-Extra: matplotlib
Requires-Dist: matplotlib>=1.1.1; extra == "matplotlib"
Provides-Extra: pyenchant
Requires-Dist: pyenchant>=1.1; extra == "pyenchant"
Provides-Extra: pip
Requires-Dist: pip>=18; extra == "pip"
Provides-Extra: python-dateutil
Requires-Dist: python-dateutil>=2.7.0; extra == "python-dateutil"
Provides-Extra: py-moneyed
Requires-Dist: py-moneyed>=2.0; extra == "py-moneyed"
Provides-Extra: rpy2
Requires-Dist: rpy2>=3.4; extra == "rpy2"
Provides-Extra: plotnine
Requires-Dist: plotnine>=0.8; extra == "plotnine"
Provides-Extra: pycel
Requires-Dist: pycel>=1.0b30; extra == "pycel"
Provides-Extra: openpyxl
Requires-Dist: openpyxl>=3.0.7; extra == "openpyxl"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# pyspread

[![pypi version](https://img.shields.io/pypi/v/pyspread.svg)](https://pypi.python.org/pypi/pyspread)
[![CI pipeline](https://gitlab.com/pyspread/pyspread/badges/master/pipeline.svg)](https://gitlab.com/pyspread/pyspread/-/pipelines?page=1&scope=branches&ref=master)
[![pyspread community board](https://img.shields.io/badge/chat_on-deltachat-teal)](https://i.delta.chat/#08CC3C4908C7928C7CD89DDB456390ABA751B51E&x=34S9Yfm9K1t71vm2Hs6oV5vI&j=D6tQ0dJhRKfzsddKWz8uEQ_H&s=odUxLW9W5zWHKQVAmN5mstGS&a=abu37hsbe%40nine.testrun.org&n=pyspread%2Ddev&b=pyspread%2Dusers)

**pyspread** is a non-traditional spreadsheet that is
based on and written in the programming language Python.

It is released under the [GPL v3. LICENSE](LICENSE)

- Homepage: https://pyspread.gitlab.io/
- Repository: https://gitlab.com/pyspread/pyspread
- API Docs: https://pyspread.gitlab.io/pyspread/


# Installation

It is recommended to install pyspread as a package that is provided for your operating system. The table below shows for which operating systems, pyspread is available in which version.

![Packaged](https://repology.org/badge/vertical-allrepos/pyspread.svg?header&columns=4)

If pyspread is unavailable or outdated for your operating system, you can install it using one of the three methods below.

When using pip, a Python virtual environment (venv) is recommended. Some operating systems may nudge your towards this. pipx could be a solution if venv is no option for you.

Furthermore, note that the QtSvg extensions for PyQT are required. For some operating systems, they are packaged separately from PyQt. Please make sure QtSvg is installed on your system before using pip.

### With pip

```bash
pip install pyspread
```

### From git

It is assumed that python3 and git are installed.

**Get sources and enter dir**
```bash
git clone https://gitlab.com/pyspread/pyspread.git
# or
git clone git@gitlab.com:pyspread/pyspread.git
# then
cd pyspread
```

**Install dependencies and pyspread**
```bash
pip3 install -r requirements.txt
# or if pip3 is not present
pip install -r requirements.txt
# next
python3 setup.py install
```

## Getting the bleeding edge version from the code repository

Note that there may unfixed bugs if you use the latest repository version.
You may want to check the CI, which comprises unit tests at
`https://gitlab.com/pyspread/pyspread/pipelines`.

Get the latest tarball or zip at https://gitlab.com/pyspread/pyspread or
clone the git repo at `https://gitlab.com/pyspread/pyspread.git`

# Starting pyspread

With an installation via pip, distutils or your OS's installer, simply run
```
$ pyspread
```
from any directory.

In order to start pyspread without installation directly from the cloned
repository or the extracted tarball or zip, run
```
$ ./pyspread/pyspread.py
```
or
```
$ python -m pyspread
```
inside the top directory.

# Contact

For user questions or user feedback please use the [delta chat channel pyspread-users](https://i.delta.chat/#08CC3C4908C7928C7CD89DDB456390ABA751B51E&x=34S9Yfm9K1t71vm2Hs6oV5vI&j=D6tQ0dJhRKfzsddKWz8uEQ_H&s=odUxLW9W5zWHKQVAmN5mstGS&a=abu37hsbe%40nine.testrun.org&n=pyspread%2Ddev&b=pyspread%2Dusers).

# Contribute

## Issues

For contributions, patches, development discussions and ideas please create an issue using the pyspread [issue tracker](https://gitlab.com/pyspread/pyspread/issues) on gitlab.

## Code

Commit your changes, push them into your fork and send a merge request. [The fork documentation page](https://docs.gitlab.com/ee/user/project/repository/forking_workflow.html) gives an overview how to do this in gitlab.

You can find more more details about code organization [here](https://pyspread.gitlab.io/pyspread/)
