-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin to chia-blockchain/main temporarily and see that we can't import …
…the simulator due to no access to tests/
- Loading branch information
Showing
3 changed files
with
76 additions
and
60 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,51 +1,54 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "rt") as fh: | ||
long_description = fh.read() | ||
|
||
dependencies = [ | ||
"chia-blockchain==2.1.2", | ||
] | ||
|
||
dev_dependencies = [ | ||
"black==23.7.0", | ||
"pytest", | ||
"pytest-asyncio", | ||
"pytest-env", | ||
] | ||
|
||
setup( | ||
name="CAT_admin_tool", | ||
version="0.0.1", | ||
author="Quexington", | ||
packages=find_packages(exclude=("tests",)), | ||
entry_points={ | ||
"console_scripts": [ | ||
"cats = cats.cats:main", | ||
"secure_the_bag = cats.secure_the_bag:main", | ||
"unwind_the_bag = cats.unwind_the_bag:main" | ||
], | ||
}, | ||
author_email="[email protected]", | ||
setup_requires=["setuptools_scm"], | ||
install_requires=dependencies, | ||
url="https://github.com/Chia-Network", | ||
license="https://opensource.org/licenses/Apache-2.0", | ||
description="Tools to administer issuance and redemption of a Chia Asset Token or CAT", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Topic :: Security :: Cryptography", | ||
], | ||
extras_require=dict( | ||
dev=dev_dependencies, | ||
), | ||
project_urls={ | ||
"Bug Reports": "https://github.com/Chia-Network/cat-admin-tool", | ||
"Source": "https://github.com/Chia-Network/cat-admin-tool", | ||
}, | ||
) | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "rt") as fh: | ||
long_description = fh.read() | ||
|
||
# dependencies = [ | ||
# "chia-blockchain==2.1.2", | ||
# ] | ||
dependencies = [ | ||
"chia-blockchain @ git+ssh://[email protected]/Chia-Network/chia-blockchain.git", | ||
] | ||
|
||
dev_dependencies = [ | ||
"black==23.7.0", | ||
"pytest", | ||
"pytest-asyncio", | ||
"pytest-env", | ||
] | ||
|
||
setup( | ||
name="CAT_admin_tool", | ||
version="0.0.1", | ||
author="Quexington", | ||
packages=find_packages(exclude=("tests",)), | ||
entry_points={ | ||
"console_scripts": [ | ||
"cats = cats.cats:main", | ||
"secure_the_bag = cats.secure_the_bag:main", | ||
"unwind_the_bag = cats.unwind_the_bag:main", | ||
], | ||
}, | ||
author_email="[email protected]", | ||
setup_requires=["setuptools_scm"], | ||
install_requires=dependencies, | ||
url="https://github.com/Chia-Network", | ||
license="https://opensource.org/licenses/Apache-2.0", | ||
description="Tools to administer issuance and redemption of a Chia Asset Token or CAT", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Topic :: Security :: Cryptography", | ||
], | ||
extras_require=dict( | ||
dev=dev_dependencies, | ||
), | ||
project_urls={ | ||
"Bug Reports": "https://github.com/Chia-Network/cat-admin-tool", | ||
"Source": "https://github.com/Chia-Network/cat-admin-tool", | ||
}, | ||
) |
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