Merge pull request #2 from harmony-one/fix-setup

[setup] Fix build for subpackage
pull/4/head
Janet Liang 5 years ago committed by GitHub
commit b29199192e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pyhmy/_version.py
  2. 11
      setup.py

@ -7,5 +7,5 @@ Provides pyhmy version information.
from incremental import Version
__version__ = Version('pyhmy', 20, 5, 1)
__version__ = Version('pyhmy', 20, 5, 3)
__all__ = ["__version__"]

@ -1,5 +1,5 @@
import pathlib
from setuptools import setup
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
@ -14,19 +14,16 @@ setup(
author='Daniel Van Der Maden',
author_email='daniel@harmony.one',
url="http://harmony.one/",
packages=['pyhmy'],
packages=find_packages(),
keywords=['Harmony', 'blockchain', 'protocol'],
install_requires=[
'pexpect',
'requests',
'pytest',
'pytest-ordering',
'incremental',
'click',
'twisted'
],
setup_requires=[
'incremental',
'pytest',
'pytest-ordering',
'click',
'twisted'
],

Loading…
Cancel
Save