We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e35766 commit 595222fCopy full SHA for 595222f
setup.py
@@ -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