-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsetup_develop.py
45 lines (40 loc) · 994 Bytes
/
setup_develop.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
import setuptools
import os
import eosfactory.core.config as config
from shutil import rmtree
setuptools_name = config.SETUPTOOLS_NAME
try:
rmtree("build")
except:
pass
try:
rmtree("dist")
except:
pass
try:
rmtree(setuptools_name + ".egg-info")
except:
pass
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
name=setuptools_name,
version='2.1.0',
description='Python-based EOS smart-contract development & testing framework',
long_description=readme(),
classifiers=[
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
'Topic :: Software Development :: Testing',
],
keywords='EOSIO, smart contract unit testing',
author='Tokenika',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
'termcolor',
],
zip_safe=False)