forked from mintgarden-io/secure-the-mint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.19 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.19 KB
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
#!/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.4",
]
dev_dependencies = [
"black==23.7.0",
"pytest",
"pytest-asyncio",
"pytest-env",
]
setup(
name="secure_the_mint",
version="0.0.1",
author="Andreas Greimel",
packages=find_packages(exclude=("tests",)),
entry_points={
"console_scripts": [
"secure_the_mint = secure_the_mint.secure_the_mint:main",
"unwind_the_mint = secure_the_mint.unwind_the_mint:main"
],
},
author_email="andreas@mintgarden.io",
setup_requires=["setuptools_scm"],
install_requires=dependencies,
license="https://opensource.org/licenses/Apache-2.0",
description="Tools to bulk mint many NFTs on-demand using Secure the bag",
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,
),
)