-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 854 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
version = str(float(long_description.split("Version: ")[1][0:4]))
setup(
name='discogslearner',
version=version,
license = "GPL-3.0",
description='Machine Learning module for Discogs',
author='Pascal Maas',
author_email='p.maas92@gmail.com',
packages=['discogslearner'],
install_requires=['pandas', 'tqdm', 'numpy', "sklearn", "discogs_client"],
url = "https://github.com/Pascallio",
download_url = "https://github.com/Pascallio/DiscogsLearner/archive/refs/tags/v0.21.tar.gz",
keywords = ["Discogs", "Machine Learning"],
long_description=long_description,
long_description_content_type='text/markdown'
)