-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 824 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 824 Bytes
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
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
###
# Copyright (c) 2023 Haofan Zheng
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
###
from setuptools import setup
from setuptools import find_packages
import PyEthHelper._Meta
setup(
name = PyEthHelper._Meta.PKG_NAME,
version = PyEthHelper._Meta.__version__,
packages = find_packages(where='.', exclude=['setup.py']),
url = 'https://github.com/lsd-ucsc/PyEthHelper',
license = PyEthHelper._Meta.PKG_LICENSE,
author = PyEthHelper._Meta.PKG_AUTHOR,
description = PyEthHelper._Meta.PKG_DESCRIPTION,
entry_points= {
'console_scripts': [
'PyEthHelper=PyEthHelper.__main__:main',
]
},
install_requires=[
'web3==6.2.0',
],
)