-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.05 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup(
name='hammer',
version='0.1',
packages=find_packages('.'),
install_requires=[
'requests',
'web3',
'rlp',
'eth_utils',
'two1',
'python-dotenv',
'autopep8',
],
author='Carlos Faria',
author_email='[email protected]',
description='Hammer to break blockchains',
license='MIT',
long_description=README,
python_requires='>=3.6',
keywords='ethereum bench tps performance',
url='https://gitlab.com/public-mint/hammer',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
]
)