-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (25 loc) · 838 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name = 'ethct',
version = '20.04.03',
description = 'Ethereum contract tool(command line)',
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/ccyanxyz/ethct',
author = 'ccyanxyz',
author_email = '[email protected]',
keywords = 'ethereum contract command-line-tool',
install_requires = ['web3>=4.2.1'],
py_modules = ['ethct', 'constants', 'ethct_contract', 'ethct_helper'],
include_package_data = True,
entry_points = {
'console_scripts': [
'ethct=ethct:main'
]
}
)