summaryrefslogtreecommitdiff
path: root/setup.py
blob: 249e1592dc4ac9835462e777f6438caba88e32bb (plain)
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 = 'coinfetch',
    version = '4.1.0',
    scripts = ['coinfetch', 'bterfetch', 'cccfetch'],
    py_modules = ['coinfetchapi'],

    install_requires = ['requests'],

    package_data = {
        '': ['README']
    },

    author = 'Delwink, LLC',
    author_email = 'support@delwink.com',
    description = 'Cryptocurrency price converter',
    license = 'AGPLv3',
    keywords = 'coin fetch coinfetch ticker bitcoin cryptocurrency money',
    url = 'http://delwink.com/software/coinfetch.html'
)