forked from jketterl/openwebrx
-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
31 lines (28 loc) · 873 Bytes
/
setup.py
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
from glob import glob
from setuptools import setup
from owrx.version import looseversion
try:
from setuptools import find_namespace_packages
except ImportError:
from setuptools import PEP420PackageFinder
find_namespace_packages = PEP420PackageFinder.find
setup(
name="OpenWebRX",
version=str(looseversion),
packages=find_namespace_packages(
include=[
"owrx*",
"csdr*",
"htdocs",
]
),
package_data={"htdocs": [f[len("htdocs/") :] for f in glob("htdocs/**/*", recursive=True)]},
entry_points={"console_scripts": ["openwebrx=owrx.__main__:main"]},
url="https://www.openwebrx.de/",
author="Marat Fayzullin",
author_email="luarvique@gmail.com",
maintainer="Marat Fayzullin",
maintainer_email="luarvique@gmail.com",
license="GAGPL",
python_requires=">=3.5",
)