-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (12 loc) · 434 Bytes
/
setup.py
File metadata and controls
14 lines (12 loc) · 434 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!python3
from setuptools import setup, find_packages
setup(
name='solidity-flattener',
description='Flattens Solidity code that uses imports into a single file.',
author='Eric Huang, BlockCAT Technologies Inc.',
author_email='team@blockcat.io',
url='https://github.com/BlockCatIO/solidity-flattener',
version='0.2.2',
packages=find_packages(exclude=["*tests"]),
scripts=['bin/solidity_flattener']
)