Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayBlagoev committed Apr 4, 2024
1 parent 68dc925 commit feb8275
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
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!
6 changes: 3 additions & 3 deletions requirements.txt
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
17 changes: 8 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
]
)

0 comments on commit feb8275

Please sign in to comment.