summaryrefslogtreecommitdiff
path: root/python-pythonanywhere.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-31 05:39:07 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-31 05:39:07 +0000
commit9e5efac6297f09082af60ebb149350cb013d81fa (patch)
tree06bc379a5677b86084da0935e36964ba7fc9c663 /python-pythonanywhere.spec
parent785532a2745532bb1e6799c09620c0cb6d50bff0 (diff)
automatic import of python-pythonanywhere
Diffstat (limited to 'python-pythonanywhere.spec')
-rw-r--r--python-pythonanywhere.spec306
1 files changed, 306 insertions, 0 deletions
diff --git a/python-pythonanywhere.spec b/python-pythonanywhere.spec
new file mode 100644
index 0000000..1728834
--- /dev/null
+++ b/python-pythonanywhere.spec
@@ -0,0 +1,306 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pythonanywhere
+Version: 0.11.0
+Release: 1
+Summary: PythonAnywhere helper tools for users
+License: MIT
+URL: https://github.com/pythonanywhere/helper_scripts/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e5/29/7fe0cce4fb1120c2a2e58f05198751e8ee189f365b727a476fef7af5a9df/pythonanywhere-0.11.0.tar.gz
+BuildArch: noarch
+
+
+%description
+![Build Status](https://github.com/pythonanywhere/helper_scripts/actions/workflows/tests.yaml/badge.svg)
+[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
+[![PyPI](https://img.shields.io/pypi/v/pythonanywhere)](https://pypi.org/project/pythonanywhere/)
+[![Downloads](https://pepy.tech/badge/pythonanywhere)](https://pepy.tech/project/pythonanywhere)
+
+# PythonAnywhere cli tool
+
+`pa` is a single command to manage PythonAnywhere services.
+
+It is designed to be run from PythonAnywhere consoles, but many subcommands can be executed directly
+from your own machine (see [usage](#Usage) below).
+
+## Installing
+### On PythonAnywhere
+In a PythonAnywhere Bash console, run:
+
+ pip3.10 install --user pythonanywhere
+
+If there is no `python3.9` on your PythonAnywhere account,
+you should upgrade your account to the newest system image.
+See [here](https://help.pythonanywhere.com/pages/ChangingSystemImage) how to do that.
+`pa` works with python 3.7, 3.8 and 3.9, but we recommend using the latest system image.
+
+### On your own machine
+Install the `pythonanywhere` package from [PyPI](https://pypi.org/project/pythonanywhere/).
+We recommend using `pipx` if you want to use it only as a cli tool, or a virtual environment
+if you want to use a programmatic interface in your own code.
+
+## Usage
+
+There are two ways to use the package. You can just run the scripts or use the underlying api wrappers directly in your scripts.
+
+### Command line interface
+
+### Running `pa` on your local machine
+
+`pa` expects the presence of some environment variables that are provided when you run your code in a PythonAnywere console.
+You need to provide them if you run `pa` on your local machine.
+
+`API_TOKEN` -- you need to set this to allow `pa` to connect to the [PythonAnywere API](https://help.pythonanywhere.com/pages/API).
+To get an API token, log into PythonAnywhere and go to the "Account" page using the link at the top right.
+Click on the "API token" tab, and click the "Create a new API token" button to get your token.
+
+`PYTHONANYWHERE_SITE` is used to connect to PythonAnywhere API and defaults to `www.pythonanywhere.com`,
+but you may need to set it to `eu.pythonanywhere.com` if you use our EU site.
+
+If your username on PythonAnywhere is different from the username on your local machine,
+you may need to set `USER` for the environment you run `pa` in.
+
+### Programmatic usage in your code
+
+Take a look at the [`pythonanywhere.task`](https://github.com/pythonanywhere/helper_scripts/blob/master/pythonanywhere/task.py)
+module and docstrings of `pythonanywhere.task.Task` class and its methods.
+
+### Legacy scripts
+
+Some legacy [scripts](https://github.com/pythonanywhere/helper_scripts/blob/master/legacy.md) (separate for each action) are still available.
+
+## Contributing
+
+Pull requests are welcome! You'll find tests in the [tests](https://github.com/pythonanywhere/helper_scripts/blob/master/tests) folder...
+
+ # prep your dev environment
+ mkvirtualenv --python=python3.10 helper_scripts
+ pip install -r requirements.txt
+ pip install -e .
+
+ # running the tests:
+ pytest
+
+ # make sure that the code that you have written is well tested:
+ pytest --cov=pythonanywhere --cov=scripts
+
+ # to just run the fast tests:
+ pytest -m 'not slowtest' -v
+
+
+
+
+
+%package -n python3-pythonanywhere
+Summary: PythonAnywhere helper tools for users
+Provides: python-pythonanywhere
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pythonanywhere
+![Build Status](https://github.com/pythonanywhere/helper_scripts/actions/workflows/tests.yaml/badge.svg)
+[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
+[![PyPI](https://img.shields.io/pypi/v/pythonanywhere)](https://pypi.org/project/pythonanywhere/)
+[![Downloads](https://pepy.tech/badge/pythonanywhere)](https://pepy.tech/project/pythonanywhere)
+
+# PythonAnywhere cli tool
+
+`pa` is a single command to manage PythonAnywhere services.
+
+It is designed to be run from PythonAnywhere consoles, but many subcommands can be executed directly
+from your own machine (see [usage](#Usage) below).
+
+## Installing
+### On PythonAnywhere
+In a PythonAnywhere Bash console, run:
+
+ pip3.10 install --user pythonanywhere
+
+If there is no `python3.9` on your PythonAnywhere account,
+you should upgrade your account to the newest system image.
+See [here](https://help.pythonanywhere.com/pages/ChangingSystemImage) how to do that.
+`pa` works with python 3.7, 3.8 and 3.9, but we recommend using the latest system image.
+
+### On your own machine
+Install the `pythonanywhere` package from [PyPI](https://pypi.org/project/pythonanywhere/).
+We recommend using `pipx` if you want to use it only as a cli tool, or a virtual environment
+if you want to use a programmatic interface in your own code.
+
+## Usage
+
+There are two ways to use the package. You can just run the scripts or use the underlying api wrappers directly in your scripts.
+
+### Command line interface
+
+### Running `pa` on your local machine
+
+`pa` expects the presence of some environment variables that are provided when you run your code in a PythonAnywere console.
+You need to provide them if you run `pa` on your local machine.
+
+`API_TOKEN` -- you need to set this to allow `pa` to connect to the [PythonAnywere API](https://help.pythonanywhere.com/pages/API).
+To get an API token, log into PythonAnywhere and go to the "Account" page using the link at the top right.
+Click on the "API token" tab, and click the "Create a new API token" button to get your token.
+
+`PYTHONANYWHERE_SITE` is used to connect to PythonAnywhere API and defaults to `www.pythonanywhere.com`,
+but you may need to set it to `eu.pythonanywhere.com` if you use our EU site.
+
+If your username on PythonAnywhere is different from the username on your local machine,
+you may need to set `USER` for the environment you run `pa` in.
+
+### Programmatic usage in your code
+
+Take a look at the [`pythonanywhere.task`](https://github.com/pythonanywhere/helper_scripts/blob/master/pythonanywhere/task.py)
+module and docstrings of `pythonanywhere.task.Task` class and its methods.
+
+### Legacy scripts
+
+Some legacy [scripts](https://github.com/pythonanywhere/helper_scripts/blob/master/legacy.md) (separate for each action) are still available.
+
+## Contributing
+
+Pull requests are welcome! You'll find tests in the [tests](https://github.com/pythonanywhere/helper_scripts/blob/master/tests) folder...
+
+ # prep your dev environment
+ mkvirtualenv --python=python3.10 helper_scripts
+ pip install -r requirements.txt
+ pip install -e .
+
+ # running the tests:
+ pytest
+
+ # make sure that the code that you have written is well tested:
+ pytest --cov=pythonanywhere --cov=scripts
+
+ # to just run the fast tests:
+ pytest -m 'not slowtest' -v
+
+
+
+
+
+%package help
+Summary: Development documents and examples for pythonanywhere
+Provides: python3-pythonanywhere-doc
+%description help
+![Build Status](https://github.com/pythonanywhere/helper_scripts/actions/workflows/tests.yaml/badge.svg)
+[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
+[![PyPI](https://img.shields.io/pypi/v/pythonanywhere)](https://pypi.org/project/pythonanywhere/)
+[![Downloads](https://pepy.tech/badge/pythonanywhere)](https://pepy.tech/project/pythonanywhere)
+
+# PythonAnywhere cli tool
+
+`pa` is a single command to manage PythonAnywhere services.
+
+It is designed to be run from PythonAnywhere consoles, but many subcommands can be executed directly
+from your own machine (see [usage](#Usage) below).
+
+## Installing
+### On PythonAnywhere
+In a PythonAnywhere Bash console, run:
+
+ pip3.10 install --user pythonanywhere
+
+If there is no `python3.9` on your PythonAnywhere account,
+you should upgrade your account to the newest system image.
+See [here](https://help.pythonanywhere.com/pages/ChangingSystemImage) how to do that.
+`pa` works with python 3.7, 3.8 and 3.9, but we recommend using the latest system image.
+
+### On your own machine
+Install the `pythonanywhere` package from [PyPI](https://pypi.org/project/pythonanywhere/).
+We recommend using `pipx` if you want to use it only as a cli tool, or a virtual environment
+if you want to use a programmatic interface in your own code.
+
+## Usage
+
+There are two ways to use the package. You can just run the scripts or use the underlying api wrappers directly in your scripts.
+
+### Command line interface
+
+### Running `pa` on your local machine
+
+`pa` expects the presence of some environment variables that are provided when you run your code in a PythonAnywere console.
+You need to provide them if you run `pa` on your local machine.
+
+`API_TOKEN` -- you need to set this to allow `pa` to connect to the [PythonAnywere API](https://help.pythonanywhere.com/pages/API).
+To get an API token, log into PythonAnywhere and go to the "Account" page using the link at the top right.
+Click on the "API token" tab, and click the "Create a new API token" button to get your token.
+
+`PYTHONANYWHERE_SITE` is used to connect to PythonAnywhere API and defaults to `www.pythonanywhere.com`,
+but you may need to set it to `eu.pythonanywhere.com` if you use our EU site.
+
+If your username on PythonAnywhere is different from the username on your local machine,
+you may need to set `USER` for the environment you run `pa` in.
+
+### Programmatic usage in your code
+
+Take a look at the [`pythonanywhere.task`](https://github.com/pythonanywhere/helper_scripts/blob/master/pythonanywhere/task.py)
+module and docstrings of `pythonanywhere.task.Task` class and its methods.
+
+### Legacy scripts
+
+Some legacy [scripts](https://github.com/pythonanywhere/helper_scripts/blob/master/legacy.md) (separate for each action) are still available.
+
+## Contributing
+
+Pull requests are welcome! You'll find tests in the [tests](https://github.com/pythonanywhere/helper_scripts/blob/master/tests) folder...
+
+ # prep your dev environment
+ mkvirtualenv --python=python3.10 helper_scripts
+ pip install -r requirements.txt
+ pip install -e .
+
+ # running the tests:
+ pytest
+
+ # make sure that the code that you have written is well tested:
+ pytest --cov=pythonanywhere --cov=scripts
+
+ # to just run the fast tests:
+ pytest -m 'not slowtest' -v
+
+
+
+
+
+%prep
+%autosetup -n pythonanywhere-0.11.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-pythonanywhere -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 0.11.0-1
+- Package Spec generated