1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='xboomx',
version='0.60',
packages=['xboomx'],
scripts=['xboomx/bin/xboomx_path.py',
'xboomx/bin/xboomx_sort.py',
'xboomx/bin/xboomx_update.py',
'xboomx/bin/xboomx_urls.py',
'xboomx/bin/web_xboomx',
'xboomx/bin/xboomx'],
license='GPLv2',
long_description='wrapper for most common occurences in dmenu',
install_requires=[],
include_package_data=True,
package_data={'shared': ["etc/config"]},
author="Victor Häggqvist",
author_email="[email protected]",
url="https://github.com/victorhaggqvist/xboomx",
)
|