setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 20
dl 0
loc 23
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python
2
"""Setup to install Bitcoin.de API Python Module."""
3
from distutils.core import setup
4
setup(name='btcde',
5
      version='4.1',
6
      py_modules=['btcde'],
7
      install_requires=['requests', 'future'],
8
      description='API Wrapper for Bitcoin.de Trading API.',
9
      url='https://github.com/peshay/btcde',
10
      author='Andreas Hubert',
11
      author_email='[email protected]',
12
      license='MIT',
13
      classifiers=['Development Status :: 5 - Production/Stable',
14
                   'Intended Audience :: Developers',
15
                   'Topic :: Software Development :: Libraries :: Application '
16
                   'Frameworks',
17
                   'License :: OSI Approved :: MIT License',
18
                   'Programming Language :: Python :: 3.8',
19
                   'Programming Language :: Python :: 3.9',
20
                   'Programming Language :: Python :: 3.10',
21
                   'Programming Language :: Python :: 3.11', ],
22
      keywords='bitcoin.de bitcoin btc api',
23
24
      )
25