-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 797 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'mitumc',
version = '2.1.1b1',
description = 'mitum model python util',
long_description = open('README.md').read(),
author = 'protocon',
author_email = 'contact@protocon.io',
license = "GPLv3",
package_dir = {'':'./src'},
url = "https://github.com/ProtoconNet/mitum-py-util",
install_requires = [
'base58', 'pybase64',
'ecdsa', 'bitcoinaddress', 'bitcoin-utils',
'pytz', 'datetime'
],
packages = find_packages('./src', exclude=['test', 'test_run']),
keywords = ['mitum', 'mitum-currency', 'mitumc', 'mitum-data-blocksign', 'mitum-blockcity'],
python_requires = '>=3.9',
)