aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 64c3ca615a70ac8cc9973dc0d41ff8765f588c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages


setup(
    name='xboomx',
    version='0.7.4',
    packages=['xboomx'],
    scripts=['xboomx/bin/xboomx_path.py',
             'xboomx/bin/xboomx_sort.py',
             'xboomx/bin/xboomx_update.py',
             'xboomx/bin/xboomx',
             'xboomx/bin/xboomx_python2mirgation.py'],
    license='GPL-2.0',
    long_description='A wrapper for most common occurrences 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",
)