-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 673 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='coinpaprika',
version='0.1.0',
author='s0h3ck',
author_email='s0h3ck@gmail.com',
description='Coinpaprika API Python client',
packages=['coinpaprika'],
url='https://github.com/s0h3ck/coinpaprika-api-python-client/',
license='MIT',
install_requires=['requests'],
keywords='coinpaprika api cryptocurrency',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)