Update `packages`

This commit is contained in:
Hsiao-Wei Wang 2019-04-23 10:15:01 +08:00
parent ba99f8a284
commit 5437273e23
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
4 changed files with 8 additions and 7 deletions

3
.gitignore vendored
View File

@ -17,3 +17,6 @@ eth2.0-spec-tests/
# Dynamically built from Markdown spec
test_libs/pyspec/eth2spec/phase0/spec.py
# vscode
.vscode/**

View File

@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages
deps = {
@ -15,6 +15,6 @@ install_requires = deps['preset_loader']
setup(
name='config_helpers',
packages=['preset_loader'],
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=install_requires,
)

View File

@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages
deps = {
@ -16,6 +16,6 @@ install_requires = deps['gen_base']
setup(
name='gen_helpers',
packages=['gen_base'],
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=install_requires,
)

View File

@ -1,8 +1,6 @@
from setuptools import setup, find_packages
deps = {
'pyspec': [
"eth-utils>=1.3.0,<2",
@ -24,7 +22,7 @@ install_requires = deps['pyspec']
setup(
name='pyspec',
packages=find_packages(),
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=install_requires,
extras_require=deps,
)