Skip to content

Commit

Permalink
[skyapi] refs skycoin#131 display README in PyPi and cleaning skyapi …
Browse files Browse the repository at this point in the history
…directory
  • Loading branch information
e1Ru1o committed Jul 8, 2019
1 parent 44ee6a3 commit bc78775
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 216 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ before_script:
script:
#Deploy to Pypi
- cd ${TRAVIS_BUILD_DIR}
- ./.travis/deploy-with-twine.sh
- ./.travis/deploy.sh
# Test PySkycoin
- make test-ci
after_failure:
Expand Down
File renamed without changes.
20 changes: 0 additions & 20 deletions lib/skyapi/.travis/build_wheels.sh

This file was deleted.

12 changes: 0 additions & 12 deletions lib/skyapi/.travis/check_wheels.sh

This file was deleted.

35 changes: 0 additions & 35 deletions lib/skyapi/.travis/install-linux.sh

This file was deleted.

29 changes: 0 additions & 29 deletions lib/skyapi/.travis/install-osx.sh

This file was deleted.

116 changes: 0 additions & 116 deletions lib/skyapi/Makefile

This file was deleted.

12 changes: 9 additions & 3 deletions lib/skyapi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@


from setuptools import setup, find_packages # noqa: H301
from os import path

NAME = "skyapi"
VERSION = "1.0.0"
Expand All @@ -24,6 +25,12 @@

REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]

script_dirname = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(script_dirname, "README.md"), encoding="utf-8") as f:
long_description = f.read()

setup(
name=NAME,
version=VERSION,
Expand All @@ -34,7 +41,6 @@
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
long_description="""\
Skycoin is a next-generation cryptocurrency. # noqa: E501
"""
long_description=long_description,
long_description_content_type="text/markdown"
)

0 comments on commit bc78775

Please sign in to comment.