forked from eosnewyork/eospy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 734 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 734 Bytes
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
from setuptools import setup, find_packages
import os
setup(name='eospy',
#version=os.getenv('BUILD_VERSION', 'DEV'),
version='1.1.5',
description='Python library for the eosio REST API',
author='deck',
author_email='deck@eosnewyork.io',
url='https://github.com/eosnewyork/eospy',
packages=find_packages(),
test_suite = 'nose.collector',
install_requires=[
'requests',
'base58',
'ecdsa',
'colander',
'pytz',
'six'
],
entry_points = {
'console_scripts' :[
'validate_chain = eospy.command_line:validate_chain',
'pycleos = eospy.command_line:cleos'
],
}
)