-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (43 loc) · 1.44 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
43
44
45
46
47
48
49
#!/usr/bin/env python3
# -*- coding:utf-8; mode:python -*-
#
# Copyright 2020 Pradyumna Paranjape
# This file is part of pspbar.
#
# pspbar is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# pspbar is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with pspbar. If not, see <https://www.gnu.org/licenses/>.
#
'''setup'''
from setuptools import setup
try:
with open("./LongDescription", 'r') as README_FILE:
LONG_DESCRIPTION = README_FILE.read()
except FileNotFoundError:
LONG_DESCRIPTION = ""
setup(
name='pspbar',
version='0.0.0.0dev4',
description="Prady's Swaybar in Python",
license="GPLv3",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Pradyumna Paranjape',
author_email='[email protected]',
url="https://github.com/pradyparanjpe",
packages=['pspbar'],
install_requires=['psutil'],
scripts=['bin/pspbar', ],
package_data={
'pspbar': ['shell_dep/netcheck.sh']
},
)