-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
42 lines (39 loc) · 1.3 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
import sys
import platform
from setuptools import setup, find_packages
from os.path import join, dirname
# copied from electrum project
data_files = []
if platform.system() == 'Linux':
usr_share = os.path.join(sys.prefix, 'share')
data_files += [
(os.path.join(usr_share, 'applications/'), ['somebar.desktop']),
(os.path.join(usr_share, 'pixmaps/'), ['somebar.xpm']),
]
setup(
name = 'somebar',
scripts = ['somebar'],
version = '0.0.8',
license = 'MIT License',
description = 'Simple taskbar widget that displays color dot or custom icon',
author = 'Ivan',
author_email = '[email protected]',
url = 'https://github.com/limpbrains/somebar',
download_url ='https://github.com/limpbrains/somebar/tarball/0.0.8',
keywords = ['AnyBar', 'somebar', 'taskbar', 'indicator'],
packages = find_packages(),
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
],
package_data = {'somebar_icons' : ['*.png']},
data_files = data_files,
long_description=open(join(dirname(__file__), 'README.md')).read(),
install_requires = [
# 'gi'
],
)