-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
24 lines (23 loc) · 1016 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
#!/usr/bin/env python
"""Setup to install Bitcoin.de API Python Module."""
from distutils.core import setup
setup(name='btcde',
version='4.1',
py_modules=['btcde'],
install_requires=['requests', 'future'],
description='API Wrapper for Bitcoin.de Trading API.',
url='https://github.com/peshay/btcde',
author='Andreas Hubert',
author_email='[email protected]',
license='MIT',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application '
'Frameworks',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11', ],
keywords='bitcoin.de bitcoin btc api',
)