-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
57 lines (51 loc) · 1.67 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
from __future__ import annotations
from setuptools import find_packages, setup
with open("README.md", "rt") as fh:
long_description = fh.read()
dependencies = [
"chia-blockchain==2.4.4",
]
dev_dependencies = [
"black==24.10.0",
"pytest",
"pytest-asyncio",
"pytest-env",
"pre-commit==3.5.0; python_version < '3.9'",
"pre-commit==4.0.1; python_version >= '3.9'",
"mypy==1.12.0",
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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",
},
)