We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0d8d54 + 093058c commit ed40455Copy full SHA for ed40455
flattener/core.py
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env python3
+#!python3
2
# Author: Eric Huang, BlockCAT Technologies Inc.
3
4
from __future__ import print_function
requirements.txt
@@ -1,2 +1,3 @@
pytest==3.3.1
twine==1.9.1
+wheel==0.30.0
setup.py
@@ -1,6 +1,6 @@
#!python3
-from setuptools import setup
+from setuptools import setup, find_packages
5
setup(
6
name='solidity-flattener',
@@ -9,5 +9,6 @@
9
author_email='team@blockcat.io',
10
url='https://github.com/BlockCatIO/solidity-flattener',
11
version='0.2.1',
12
+ packages=find_packages(exclude=["*tests"]),
13
scripts=['bin/solidity_flattener']
14
)
0 commit comments