Skip to content

Commit

Permalink
Change project name
Browse files Browse the repository at this point in the history
Mainly due to the availability of names on PYPI
  • Loading branch information
derogab committed Mar 30, 2021
1 parent 4c10941 commit 2e07382
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# JARVIS
Just A Rather Very Intelligent System
# Puzzle

_Puzzle_ is a simple tool capable of managing customized automations through schedules, telegram, etc.
All custom automations are simple plugins.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: '3'

services:
jarvis:
container_name: jarvis
puzzle:
container_name: puzzle
build:
context: .
volumes:
Expand Down
2 changes: 1 addition & 1 deletion example/plugins/example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json

from jarvis import Plugin
from puzzle import Plugin
from telegram import Update
from telegram.ext import CommandHandler, CallbackContext

Expand Down
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os

from dotenv import load_dotenv
from jarvis import PluginCollection
from jarvis import Tools
from puzzle import PluginCollection
from puzzle import Tools

# Load .env file
load_dotenv()
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
long_description = fh.read()

setuptools.setup(
name="jarvis-core",
version="1.0.0-beta",
name="puzzle-core",
version="1.0.0",
author="derogab",
author_email="[email protected]",
description="Just A Rather Very Intelligent System",
description="A simple tool capable of managing customized automations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/derogab/jarvis",
url="https://github.com/derogab/puzzle",
license='MIT',
package_dir={'jarvis': 'core'},
package_dir={'puzzle': 'core'},
packages=[
'jarvis',
'puzzle',
],
install_requires=[
'python-telegram-bot',
'flask'
],
keywords='jarvis',
keywords='puzzle',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 2e07382

Please sign in to comment.