-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade deps to prep for 0.2.0-rc1 release
- Loading branch information
Showing
8 changed files
with
81 additions
and
41 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
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,16 @@ | ||
{ | ||
"dt": "2025-01-03T16:08:30.123456+00:00", | ||
"keria": { | ||
"dt": "2025-01-03T16:08:30.123457+00:00", | ||
"curls": ["http://127.0.0.1:3902/"] | ||
}, | ||
"iurls": [ | ||
"http://127.0.0.1:5642/oobi/BBilc4-L3tFUnfM_wJr4S4OJanAv_VmF_dJNN6vkf2Ha/controller?name=Wan&tag=witness", | ||
"http://127.0.0.1:5643/oobi/BLskRTInXnMxWaGqcpSyMgo0nYbalW99cGZESrz3zapM/controller?name=Wil&tag=witness", | ||
"http://127.0.0.1:5644/oobi/BIKKuvBwpmDVA4Ds-EpL5bt9OqPzWPja2LigFYZN2YfX/controller?name=Wes&tag=witness" | ||
], | ||
"tocks": { | ||
"initer": 0.0, | ||
"escrower": 1.0 | ||
} | ||
} |
Empty file.
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 |
---|---|---|
|
@@ -24,20 +24,27 @@ | |
https://caremad.io/posts/2013/07/setup-vs-requirement/ | ||
""" | ||
|
||
|
||
from pathlib import Path | ||
from glob import glob | ||
from os.path import basename | ||
from os.path import splitext | ||
|
||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
this_directory = Path(__file__).parent | ||
if (this_directory / "README.md").exists(): # If building inside a container, like in the `images/keria.dockerfile`, this file won't exist and fails the build | ||
long_description = (this_directory / "README.md").read_text() | ||
else: | ||
long_description = "KERIA: KERI Agent in the cloud." | ||
|
||
setup( | ||
name='keria', | ||
version='0.2.0-dev6', # also change in src/keria/__init__.py | ||
version='0.2.0-rc1', # also change in src/keria/__init__.py | ||
license='Apache Software License 2.0', | ||
description='KERIA: KERI Agent in the cloud', | ||
long_description="KERIA: KERI Agent in the cloud.", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Philip S. Feairheller', | ||
author_email='[email protected]', | ||
url='https://github.com/WebOfTrust/keria', | ||
|
@@ -54,7 +61,7 @@ | |
'Operating System :: Unix', | ||
'Operating System :: POSIX', | ||
'Operating System :: Microsoft :: Windows', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.12', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
# uncomment if you test on these interpreters: | ||
# 'Programming Language :: Python :: Implementation :: PyPy', | ||
|
@@ -64,37 +71,37 @@ | |
'Topic :: Utilities', | ||
], | ||
project_urls={ | ||
'Documentation': 'https://weboftrust.github.io/keridoc', | ||
'Issue Tracker': 'https://github.com/WebOfTrust/keria/issues', | ||
'Source': 'https://github.com/WebOfTrust/keria', | ||
}, | ||
keywords=[ | ||
"secure attribution", | ||
"authentic data", | ||
"discovery", | ||
"resolver", | ||
# eg: 'keyword1', 'keyword2', 'keyword3', | ||
"resolver" | ||
], | ||
python_requires='>=3.12.2', | ||
install_requires=[ | ||
'hio>=0.6.14', | ||
'keri==1.2.0.dev13', | ||
'mnemonic>=0.21', | ||
'multicommand>=1.0.0', | ||
'falcon>=3.1.3', | ||
'http_sfv>=0.9.8', | ||
'dataclasses_json>=0.5.7', | ||
'apispec>=6.6.0', | ||
'hio==0.6.14', | ||
'keri==1.2.2', | ||
'mnemonic==0.21', | ||
'multicommand==1.0.0', | ||
'falcon==4.0.2', | ||
'http_sfv==0.9.9', | ||
'dataclasses_json==0.6.7', | ||
'apispec==6.8.1', | ||
], | ||
extras_require={ | ||
# eg: | ||
# 'rst': ['docutils>=0.11'], | ||
# ':python_version=="2.6"': ['argparse'], | ||
'test': ['pytest', 'coverage'], | ||
'docs': ['sphinx', 'sphinx-rtd-theme'] | ||
}, | ||
tests_require=[ | ||
'coverage>=5.5', | ||
'pytest>=6.2.4', | ||
'requests==2.32.3' | ||
'coverage>=7.6.10', | ||
'pytest>=8.3.4', | ||
], | ||
setup_requires=[ | ||
'setuptools==75.8.0' | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
|
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