Skip to content

Commit c5dcdbf

Browse files
author
easyaddress.io
committed
Initial commit.
0 parents  commit c5dcdbf

File tree

9 files changed

+544
-0
lines changed

9 files changed

+544
-0
lines changed

.gitignore

+474
Large diffs are not rendered by default.

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Contributors (in alphabetical order):
2+
3+
* Sebastian Steins <[email protected]>
4+
5+
* Your name could stand here :)

DESCRIPTION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Pyton wrapper for easyaddress.io API.

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
Copyright easyaddress.io, https://easyaddress.io
3+
4+
Permission is hereby granted, free of charge, to any person obtaining
5+
a copy of this software and associated documentation files (the
6+
"Software"), to deal in the Software without restriction, including
7+
without limitation the rights to use, copy, modify, merge, publish,
8+
distribute, sublicense, and/or sell copies of the Software, and to
9+
permit persons to whom the Software is furnished to do so, subject to
10+
the following conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# py-easyaddress
2+
3+
*py-easyaddress by [easyaddress.io](https://easyaddress.io/)*
4+
5+
Licence: MIT
6+
7+
___
8+
9+
© 2021 [easyaddress.io](https://easyaddress.io/)

pyproject.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[metadata]
2+
name = py-easyaddress
3+
version = 0.0.1
4+
author = easyaddress.io
5+
author_email = [email protected]
6+
description = Pyton wrapper for easyaddress.io API.
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = https://github.com/sebst/py-easyaddress
10+
project_urls =
11+
Bug Tracker = https://github.com/sebst/py-easyaddress/issues
12+
classifiers =
13+
Programming Language :: Python :: 3
14+
License :: OSI Approved :: MIT
15+
Operating System :: OS Independent
16+
17+
[options]
18+
package_dir =
19+
= src
20+
packages = find:
21+
python_requires = >=3.6
22+
23+
[options.packages.find]
24+
where = src

src/easyaddress/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
4+
__all__ = []

src/easyaddress/easyaddress.py

Whitespace-only changes.

0 commit comments

Comments
 (0)