-
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.
- Loading branch information
1 parent
68dc925
commit feb8275
Showing
3 changed files
with
12 additions
and
13 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,6 +1,6 @@ | ||
# DecCom-Python | ||
Decentralised communication with Python made easy. | ||
|
||
DecCom allows provides an easy interface to stack modular protocols on top of each other to create the application you need. The package comes with several protocols you can already use in your development. | ||
DecCom provides an easy interface to stack modular protocols on top of each other to create the application you need. The package comes with several protocols you can already use in your development. | ||
|
||
THE PROJECT IS STILL A WORK IN PROGRESS!! ALL BINDINGS ARE SUBJECT TO CHANGE! USE AT YOUR OWN RISK! |
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,3 +1,3 @@ | ||
cryptography==42.0.5 | ||
fe25519==1.5.0 | ||
ge25519==1.5.1 | ||
cryptography | ||
fe25519 | ||
ge25519 |
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 |
---|---|---|
|
@@ -2,8 +2,7 @@ | |
|
||
with open("README.md", encoding="utf-8") as f: | ||
long_description = f.read() | ||
with open("requirements.txt", encoding="utf-8") as f: | ||
requirements = f.readlines() | ||
|
||
setup( | ||
name="deccom", | ||
version="0.0.1", | ||
|
@@ -14,17 +13,17 @@ | |
author_email="[email protected]", | ||
license="MIT", | ||
url="https://github.com/NikolayBlagoev/DecCom-Python", | ||
packages=find_packages(), | ||
install_requires=requirements, | ||
packages=["deccom"], | ||
install_requires=[ | ||
'cryptography', | ||
'fe25519', | ||
'ge25519' | ||
], | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Programming Language :: Python :: 3" | ||
] | ||
) |