mirror of
https://github.com/yawaflua/python-qiwi.git
synced 2025-12-10 12:29:30 +02:00
added license
This commit is contained in:
57
setup.py
57
setup.py
@@ -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",
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user