Passed
Push — 2.1 ( 103c7b )
by Andreas
03:28
created

setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 22
dl 0
loc 25
rs 10
c 0
b 0
f 0
wmc 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='2.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 :: 2',
19
                   'Programming Language :: Python :: 2.7',
20
                   'Programming Language :: Python :: 3',
21
                   'Programming Language :: Python :: 3.4',
22
                   'Programming Language :: Python :: 3.5',
23
                   'Programming Language :: Python :: 3.6', ],
24
      keywords='bitcoin.de bitcoin btc api',
25
26
      )
27