-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
executable file
·39 lines (37 loc) · 1.37 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='python3-discogs-client',
version='2.7.1',
description='Python API client for Discogs',
long_description='This is an active fork of the official "Discogs API client for Python", which was deprecated by discogs.com as of June 2020. We think it is a very useful Python module and decided to continue maintaining it. Please visit: https://github.com/joalla/discogs_client for more information.',
url='https://github.com/joalla/discogs_client',
author='joalla',
author_email='[email protected]',
test_suite='discogs_client.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Utilities',
],
install_requires=[
'requests',
'oauthlib',
'python-dateutil',
],
packages=[
'discogs_client',
],
extras_require={
"docs": [
"sphinx",
"pydata-sphinx-theme",
"myst-parser",
],
}
)