-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 2.35 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 2.35 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python2
from distutils.core import setup
long_description = """
Python indicator for displaying the latest exchange rate of dogecoin/bitcoin at cryptsy.com"
Features
* displays the current exchange rate of dogecoin/bitcoin at cryptsy.com\
* updating the exchange rate every 3 seconds\
* quick shortcut to cryptsy.com\
* quick shortcut to bitcoinwisdom.com, especially doge/btc market
"""
setup(name = 'DogecoinExchangeRateIndicator',
version = '0.1',
description = 'Python indicator for displaying the latest exchange rate of dogecoin/bitcoin at cryptsy.com',
long_description = long_description,
author = 'Dirk Rother',
author_email = 'dirrot.dev@gmail.com',
license = "GNU General Public License version 2 or later",
url = 'https://github.com/Dirrot/python-indicator-dogecoin-cryptsy-exchange-rate',
packages = [],
data_files = [
('/opt/extras.ubuntu.com/DogecoinExchangeRateIndicator', [
'DogecoinExchangeRateIndicator/__init__.py',
'DogecoinExchangeRateIndicator/constants.py',
'DogecoinExchangeRateIndicator/cryptsy.py',
'DogecoinExchangeRateIndicator/DogecoinExchangeRateIndicator.py']),
('/opt/extras.ubuntu.com/DogecoinExchangeRateIndicator/share', [
'README.md',
'LICENSE',
'img/donation-qr-code.png']),
('/opt/extras.ubuntu.com/DogecoinExchangeRateIndicator/icons', [
'DogecoinExchangeRateIndicator/icons/the_d.jpg',
'DogecoinExchangeRateIndicator/icons/logo_cryptsy.jpg',
'DogecoinExchangeRateIndicator/icons/logo_bitcoinwisdom.png']),
('/usr/bin', [
'scripts/indicator-dogecoin'])],
keywords = "dogecoin exchange rate indicator cryptcurrency",
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial'],
)