forked from Chia-Network/CAT-admin-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.37 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "rt") as fh:
long_description = fh.read()
dependencies = [
"chia-blockchain@git+https://github.com/Chia-Network/chia-blockchain.git@protocol_and_cats_rebased#23d571d9bb6b5003b49dee7ee31c1799358c5349",
]
dev_dependencies = [
"black",
]
setup(
name="CAT_admin_tool",
version="0.0.1",
author="Quexington",
packages=find_packages(exclude=("tests",)),
entry_points={
"console_scripts": ["cats = cats.cats: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",
},
)