-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·39 lines (35 loc) · 1.03 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
from codecs import open
from os import path
from setuptools import (
setup,
find_packages,
)
from gear import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="meter-gear",
version=__version__,
description="An adapter between meter-restful and eth-rpc.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/meterio/meter-gear",
author="Simon Zhang",
author_email="zhanghan.simon@gmail.com",
license="MIT",
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.9',
],
keywords="meter blockchain ethereum",
packages=find_packages("."),
include_package_data=True,
python_requires=">=3.9",
install_requires=[x.strip() for x in open('requirements.txt')],
entry_points={
"console_scripts": [
"meter-gear=gear.cli:main",
],
}
)