-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 950 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
"""setup.py: setuptools control."""
from setuptools import setup, find_packages
__version__ = '1.1.0'
with open('README.md', 'r', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='myb-coinbase-api',
author='Mine Your Business',
author_email='[email protected]',
packages=find_packages(exclude=("tests",)),
version=__version__,
description='Python library for communicating with the Coinbase API',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'requests>=2.22.0'
],
url='https://github.com/mine-your-business/myb-coinbase-api',
python_requires='>=3.7',
zip_safe=False,
license='GPL-3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
)