-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mainly due to the availability of names on PYPI
- Loading branch information
Showing
5 changed files
with
16 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|