-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 809 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright © 2023 pkeorley
#
# This source code is licensed under the MIT license found in the LICENSE
# file in the root directory of this source tree.
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='lastfmxpy',
version='1.2.2',
python_requires='>=3.10',
install_requires=['requests>=2.31.0', 'aiohttp~=3.8.4'],
packages=find_packages(exclude=['.venv']),
url='https://github.com/pkeorley/lastfmxpy',
license='MIT',
licence_files=['LICENSE'],
author='pkeorley',
author_email='[email protected]',
description='A tool that helps to work effectively with the API from last.fm',
long_description=long_description,
long_description_content_type='text/markdown'
)