Skip to content

Commit

Permalink
Update packaging and PyPi metadata, release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nebolsin committed Sep 4, 2018
1 parent d834816 commit 572de2b
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build/
dist/
*.egg-info/
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018 Mochi, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ An overview of the DApp Store architecture is:
Using pip or easy install:

```sh
$ pip install mobius-client-python
$ pip install mobius-client
```

or
Expand Down
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[metadata]
license_file = LICENSE.txt

[bdist_wheel]
universal=1
32 changes: 30 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,41 @@
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='mobius-client-python',
version='1.0.0',
name='mobius-client',
version='1.0.2',
url="https://github.com/mobius-network/mobius-client-python",
author="Mobius Team",
author_email="[email protected]",
description="Mobius DApp Store SDK",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=[
'PyJWT',
'stellar-base',
],
extras_require={
'example': ['flask'],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
'Mobius Store': 'https://store.mobius.network',
'Documentation': 'https://docs.mobius.network',
'Bug Reports': 'https://github.com/mobius-network/mobius-client-python/issues',
'Source': 'https://github.com/mobius-network/mobius-client-python/',
},
)

0 comments on commit 572de2b

Please sign in to comment.