This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from iotaledger/release/1.1.1
1.1.1
- Loading branch information
Showing
32 changed files
with
1,437 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ language: python | |
python: | ||
- "2.7" | ||
- "3.5" | ||
- "3.6-dev" | ||
- "3.6" | ||
install: "pip install ." | ||
script: "nosetests" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,9 @@ | |
from __future__ import absolute_import, division, print_function | ||
|
||
from codecs import StreamReader, open | ||
from sys import version_info | ||
|
||
from setuptools import find_packages, setup | ||
|
||
## | ||
# Check Python version. | ||
if version_info[0:2] < (2, 7): | ||
raise EnvironmentError('PyOTA requires Python 2.7 or greater.') | ||
|
||
if (version_info[0] == 3) and (version_info[1] < 5): | ||
raise EnvironmentError('PyOTA requires Python 3.5 or greater.') | ||
|
||
## | ||
# Load long description for PyPi. | ||
with open('README.rst', 'r', 'utf-8') as f: # type: StreamReader | ||
|
@@ -28,7 +19,7 @@ | |
name = 'PyOTA', | ||
description = 'IOTA API library for Python', | ||
url = 'https://github.com/iotaledger/iota.lib.py', | ||
version = '1.1.0', | ||
version = '1.1.1', | ||
|
||
packages = find_packages('src'), | ||
include_package_data = True, | ||
|
@@ -63,7 +54,9 @@ | |
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
|
||
keywords = 'iota,tangle,iot,internet of things,api,library', | ||
keywords = | ||
'iota,tangle,iot,internet of things,api,library,cryptocurrency,' | ||
'balanced ternary', | ||
|
||
author = 'Phoenix Zerin', | ||
author_email = '[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.