-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
58 lines (53 loc) · 1.71 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
58
from __future__ import annotations
from setuptools import find_packages, setup
with open("README.md", encoding="UTF-8") as fh:
long_description = fh.read()
dependencies = [
"chia-blockchain==2.5.0",
]
dev_dependencies = [
"pytest==8.3.4",
"pytest-asyncio==0.25.0",
"pytest-monitor==1.6.6; sys_platform == 'linux'",
"pytest-xdist==3.6.1",
"ruff>=0.8.1",
"faker==33.1.0",
"mypy==1.13.0",
"types-setuptools==75.6.0.20241126",
"pre-commit==4.0.1; python_version >= '3.9'",
]
setup(
name="chianft",
packages=find_packages(exclude=("tests",)),
author="Geoff Walmsley",
entry_points={
"console_scripts": ["chianft = chianft.cmds.cli:main"],
},
package_data={
"": ["*.clvm", "*.clvm.hex", "*.clib", "*.clsp", "*.clsp.hex"],
},
author_email="[email protected]",
setup_requires=["setuptools_scm"],
install_requires=dependencies,
url="https://github.com/Chia-Network",
license="Apache-2.0",
description="Chia NFT minting toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
],
extras_require=dict(
dev=dev_dependencies,
),
project_urls={
"Bug Reports": "https://github.com/Chia-Network/chia-nft-minting-tool",
"Source": "https://github.com/Chia-Network/chia-nft-minting-tool",
},
)