-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 685 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 685 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
#!/usr/bin/env python
"""
=========
pyliquid-dsp
=========
"""
from setuptools import setup, find_packages
setup(
name="pyliquid-dsp",
version="0.0.1",
packages=find_packages(exclude=['tests.*', 'tests', '.virt']),
tests_require=['nose'],
test_suite='nose.collector',
author='Michel Pelletier',
author_email='pelletier.michel@yahoo.com',
description='liquid-dsp wrapper',
long_description=__doc__,
license='LGPL v3',
url='https://github.com/michelp/pyliquid-dsp',
install_requires=[
'cffi',
'docopt',
],
entry_points = {
'console_scripts' : [
'freqdem = liquiddsp.tools.freqdem:main',
]
},
)