Skip to content

Commit

Permalink
Ready for detailed testing
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaZeta authored and AlphaZeta committed Feb 7, 2021
1 parent f8f38b3 commit 66fb4a8
Show file tree
Hide file tree
Showing 1,765 changed files with 15 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__pycache__/
.vscode/
*.so
ToDos.txt
todo.txt
api_keys.conf
alpha.db
*.db
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
recursive-include src/warden *
recursive-include src/alphazeta/warden *
include requirements.txt
global-exclude *.pkl
global-exclude txs*.json
Expand Down
21 changes: 4 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,31 +26,18 @@ Installation instructions for Specter can be found [here](https://github.com/cry
Log in to your computer running Specter, open Terminal and type:

```bash
pip3 install alphazeta.warden
```

_You may need to allow port 25442 (this is the port WARden uses to connect):_

```bash
sudo ufw allow 25442
git clone https://github.com/pxsocs/specter_warden
cd specter_warden
```

Then run the WARden server:

```bash
python3 -m warden
python3 warden
```

Open your browser and navigate to:
`http://localhost:25442/`

## Upgrade

From the WARden directory, type:

```bash
pip3 install alphazeta.warden --upgrade
```
`http://localhost:5000/`

## This is an Open Source project

Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ requests
urllib3
simplejson
jsonify
yaspin
ansi
emoji
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@

from setuptools import setup, find_packages
import os
from setuptools import setup, find_namespace_packages


with open("README.md", "r") as fh:
long_description = fh.read()

current_version = '0.7.0.0'
current_version = '0.9.0.6'

with open("src/warden/static/config/version.txt", "w") as text_file:
with open("src/alphazeta/warden/static/config/version.txt", "w") as text_file:
print(f"{current_version}", file=text_file)


reqs = [
'Flask-Login',
'flask_apscheduler',
Expand All @@ -35,10 +37,8 @@
url="https://github.com/pxsocs/specter_warden",
include_package_data=True,
package_dir={"": "src"},
packages=find_packages(),
install_requires=reqs,
setup_requires=reqs,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down
1 change: 0 additions & 1 deletion src/warden/static/config/version.txt

This file was deleted.

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.
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.
File renamed without changes.
1 change: 1 addition & 0 deletions warden/static/config/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.9.0.5
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 66fb4a8

Please sign in to comment.