-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (29 loc) · 819 Bytes
/
setup.py
File metadata and controls
40 lines (29 loc) · 819 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
36
37
38
import setuptools
from distutils.core import setup
import sys
import os
setup(
# Application name:
name="PySignalHound",
# Version number (initial):
version="0.0.2",
# Application author details:
author="Connor Wolf",
author_email="github@imaginaryindustries.com",
# Packages
packages=["SignalHound"],
# Include additional files into the package
include_package_data=True,
# Put the `bb_api.dll` in the proper dll directory so it's available for loading.
data_files=[(sys.prefix + "/DLLs", ["SignalHound/data/bb_api.dll"])],
# Details
url="http://pypi.python.org/pypi/pySignalHound/",
#
# license="LICENSE.txt",
description="Wrapper for SignalHound spectrum analysers.",
long_description=open("README.md").read(),
# Dependent packages (distributions)
install_requires=[
"numpy",
],
)