forked from 0xEnrico/arweave-nft-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 752 Bytes
/
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
from distutils.core import setup
setup(
name="arweave-nft-uploader",
packages = ['arweave_nft_uploader'],
version="0.0.1",
description="Client interface for sending NFTs to the Arweave permaweb",
author="0xEnrico",
author_email="[email protected]",
url="https://github.com/0xEnrico/arweave-nft-uploader",
download_url="https://github.com/0xEnrico/arweave-nft-uploader",
keywords=['arweave', 'crypto'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'arweave-python-client>=1.0.15.dev0'
],
entry_points={
'console_scripts': [
'arweave-nft=arweave_nft_uploader:main',
],
},
)