forked from discogs/discogs_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 852 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='discogs-client',
version='1.1.1',
description='Official Python API client for Discogs',
url='https://github.com/discogs/discogs-python-client',
author='Discogs',
author_email='[email protected]',
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',
],
py_modules=[
'discogs_client',
],
)