-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
38 lines (35 loc) · 1.13 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
#!/usr/bin/python3
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="eth-event",
version="1.2.5", # do not edit directly, use bumpversion
license="MIT",
description="Ethereum event decoder and topic generator",
long_description=long_description,
long_description_content_type="text/markdown",
author="Benjamin Hauser",
author_email="[email protected]",
url="https://github.com/iamdefinitelyahuman/eth-event",
include_package_data=True,
py_modules=["eth_event"],
setup_requires=[],
zip_safe=False,
keywords=["ethereum"],
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.6, <4",
install_requires=[
"eth-abi>=4,<6",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"eth-utils>=2,<4",
"hexbytes<1",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)