forked from discogs/discogs_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (29 loc) · 921 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
26
27
28
29
30
31
#!/usr/bin/env python
from setuptools import setup
setup(
name='discogs-client',
version='2.3.0',
description='Official Python API client for Discogs',
url='https://github.com/discogs/discogs_client',
author='Discogs',
author_email='[email protected]',
test_suite='discogs_client.tests',
classifiers=[
'Development Status :: 7 - Inactive',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Utilities',
],
install_requires=[
'requests',
'six',
'oauthlib',
],
packages=[
'discogs_client',
],
)