added license

This commit is contained in:
ms lev
2021-12-01 15:12:34 +05:00
parent a1196a83ea
commit 90ce039e2b
3 changed files with 694 additions and 42 deletions

View File

@@ -1,48 +1,23 @@
from io import open
from setuptools import setup
from setuptools import setup, find_packages
"""
:authors: Peopl3s
:license: Apache License, Version 2.0, see LICENSE file
:copyright: (c) 2021 Peopl3s
"""
version = '1.0.2'
with open("README.md", "r") as fh:
long_description = fh.read()
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='python_qiwi',
version=version,
author='Levman5',
author_email='lev_bariakh@icloid.ru',
description=(
u'Module for qiwi wallet api'),
name="python-qiwi",
version="0.0.1",
author="Lev",
author_email="lev_bariakh@icloud.com",
description="library for easy work with qiwi wallet",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Peopl3s/club_house_api',
download_url='https://github.com/Peopl3s/club-house-api/archive/main.zip',
license='Apache License, Version 2.0, see LICENSE file',
packages=['club_house_api'],
install_requires=['aiohttp', 'aiofiles'],
long_description_content_type="text/markdown",
url="https://github.com/lev007-ops/python-qiwi",
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
]
)
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)