Skip to content

Commit ed40455

Browse files
authored
Merge pull request #14 from BlockCatIO/development
Fix pip upload
2 parents a0d8d54 + 093058c commit ed40455

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

flattener/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#!python3
22
# Author: Eric Huang, BlockCAT Technologies Inc.
33

44
from __future__ import print_function

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pytest==3.3.1
22
twine==1.9.1
3+
wheel==0.30.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!python3
22

3-
from setuptools import setup
3+
from setuptools import setup, find_packages
44

55
setup(
66
name='solidity-flattener',
@@ -9,5 +9,6 @@
99
author_email='team@blockcat.io',
1010
url='https://github.com/BlockCatIO/solidity-flattener',
1111
version='0.2.1',
12+
packages=find_packages(exclude=["*tests"]),
1213
scripts=['bin/solidity_flattener']
1314
)

0 commit comments

Comments
 (0)