Skip to content

Commit 595222f

Browse files
committed
Add setup.py
1 parent 1e35766 commit 595222f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env python3
2+
3+
from setuptools import setup, find_packages
4+
import pulseviz
5+
6+
7+
setup(
8+
name='pulseviz',
9+
version=pulseviz.__version__,
10+
author='Patrick Bartels',
11+
author_email='[email protected]',
12+
description='Audio visualizer for PulseAudio written in Python',
13+
url='https://github.com/pckbls/pulseviz',
14+
license='MIT',
15+
packages=find_packages(exclude=['tests', 'tests.*']),
16+
install_requires=[
17+
'pyglet',
18+
'numpy'
19+
],
20+
entry_points={
21+
'console_scripts': [
22+
'pulseviz = pulseviz.main:main'
23+
]
24+
}
25+
)

0 commit comments

Comments
 (0)