Skip to content
This repository was archived by the owner on May 14, 2021. It is now read-only.

Commit 1397a30

Browse files
committed
pypi packaging [skip ci]
1 parent 8bf6a45 commit 1397a30

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Make sure you have Python 2 >=2.7.9.
1313
## Installation
1414

1515
```sh
16-
pip install git+https://github.com/kinfoundation/erc20token-sdk-python.git
16+
pip install erc20token
1717
```
1818

1919
### Installation in Google App Engine Python Standard Environment

requirements-dev.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
# test dependencies
31
apipkg>=1.4
42
codecov>=2.0.9
53
coverage>=4.4.2

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[bdist_wheel]
2+
# This flag says that the code is written to work on both Python 2 and Python 3.
3+
universal=1

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
version=__version__,
1515
description='ERC20 token SDK for Python',
1616
author='Kin Foundation',
17+
author_email='[email protected]',
1718
maintainer='David Bolshoy',
1819
maintainer_email='[email protected]',
1920
url='https://github.com/kinfoundation/erc20token-sdk-python',
2021
license='GPLv2',
2122
packages=["erc20token"],
2223
long_description=open("README.md").read(),
23-
keywords = ["ethereum", "erc20", "blockchain", "cryptocurrency"],
24+
keywords=["ethereum", "erc20", "blockchain", "cryptocurrency"],
2425
classifiers=[
2526
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
2627
'Intended Audience :: Developers',
@@ -32,4 +33,5 @@
3233
],
3334
install_requires=requires,
3435
tests_require=tests_requires,
36+
python_requires='>=2.7',
3537
)

0 commit comments

Comments
 (0)