-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.32 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
def readme():
with open('README.md', encoding='utf-8') as f:
readme = f.read()
return readme
def requirements():
with open('requirements.txt') as f:
requirement = f.read().splitlines()
return requirement
version = '1.0.3'
setup(
name='deezer-playlist-generator',
version=version,
description='Library for working with Deezer API for creating a playlist by your preferences in Deezer',
long_description=readme(),
long_description_content_type="text/markdown",
author="Valieva Elina",
author_email="valievaelinaaa@gmail.com",
url="https://github.com/ElinaValieva/deezer-playlist-generator",
download_url="https://github.com/ElinaValieva/deezer-playlist-generator/archive/v{}.tar.gz".format(version),
license="MIT",
packages=["deezer_api"],
install_requires=requirements(),
python_requires=">=3.5",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)