-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (38 loc) · 1.45 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
40
41
42
43
44
45
46
from setuptools import find_packages, setup
with open('README.md', 'r') as f: long_description = f.read()
setup(
name='transpose_decoding_sdk',
version='1.0.5',
# meta
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
description='The Transpose Decoding SDK is a Python package that makes decoding contract activity on EVM blockchains as simple as possible. Simply specify a contract address and ABI to start streaming historical or live activity across decoded logs, transactions, and traces.',
keywords=['web3', 'defi', 'ethereum', 'transpose', 'polygon', 'goerli', 'abi', 'decode', 'event', 'log', 'traces', 'rpc', 'api'],
license='MIT',
# classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Database',
'Topic :: Utilities'
],
# homepage
url='https://github.com/TransposeData/transpose-decoding-sdk',
# author
author='Alex Langshur (alangshur)',
author_email='alex@transpose.io',
# packages
packages=find_packages(exclude=['demo', 'tests']),
requires=["wheel"],
# dependencies
install_requires=[
'eth-event',
'pip-chill',
'dateutils',
'web3'
]
)