This repository has been archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
232 additions
and
495 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
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,2 @@ | ||
# Change Log | ||
Moved to [src/CHANGELOG.md](src/CHANGELOG.md). | ||
Moved to [src/etherollapp/CHANGELOG.md](https://github.com/AndreMiras/EtherollApp/blob/develop/src/etherollapp/CHANGELOG.md). |
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
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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import os | ||
|
||
from setuptools import find_namespace_packages, setup | ||
|
||
from src.etherollapp import version | ||
|
||
|
||
def read(fname): | ||
with open(os.path.join(os.path.dirname(__file__), fname)) as f: | ||
return f.read() | ||
|
||
|
||
# exposing the params so it can be imported | ||
setup_params = { | ||
'name': 'EtherollApp', | ||
'version': version.__version__, | ||
'description': ( | ||
'Provably fair dice game running on the Ethereum blockchain'), | ||
'long_description': read('README.md'), | ||
'long_description_content_type': 'text/markdown', | ||
'author': 'Andre Miras', | ||
'url': 'https://github.com/AndreMiras/EtherollApp', | ||
'packages': find_namespace_packages( | ||
where='src', | ||
exclude=( | ||
'distutils', | ||
'python-for-android', | ||
'python-for-android.*', | ||
), | ||
), | ||
'package_data': {'': ('*.kv', '*.md')}, | ||
'package_dir': {'': 'src'}, | ||
'entry_points': { | ||
'console_scripts': ( | ||
'etherollapp=etherollapp.etheroll.controller:main', | ||
), | ||
}, | ||
'python_requires': '>=3', | ||
'install_requires': ( | ||
'eth-account<0.4.0', | ||
'eth-utils', | ||
'kivy-garden.kivymd', | ||
'layoutmargin', | ||
'opencv-python>=4', | ||
'oscpy', | ||
'pyetheroll', | ||
'raven', | ||
'requests-cache', | ||
'web3', | ||
), | ||
} | ||
|
||
|
||
def run_setup(): | ||
setup(**setup_params) | ||
|
||
|
||
# makes sure the setup doesn't run at import time | ||
if __name__ == '__main__': | ||
run_setup() |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.