-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (26 loc) · 841 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (26 loc) · 841 Bytes
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
#!/usr/bin/env python3
"""
Pipe informations to lemonboy's bar
"""
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
setup(
name="barython",
version="0.0.1",
description="Pipe informations to lemonboy's bar",
url="https://github.com/Anthony25/barython",
author="Anthony25 <Anthony Ruhier>",
author_email="anthony.ruhier@gmail.com",
license="Simplified BSD",
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
],
keywords=["bar", "desktop"],
packages=["barython", ],
install_requires=["python-mpd2", "xcffib"],
setup_requires=['pytest-runner', ],
tests_require=['pytest', 'pytest-cov', "pytest-mock", "pytest-xdist"],
)