This repository was archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
46 lines (39 loc) · 1.37 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
DESCRIPTION = 'Baseband Digital Linear Modems'
LONG_DESCRIPTION = 'The documentation of this project can be obtained ' \
'from our GitHub repository: https://github.com/kirlf/ModulationPy'
MAINTAINER = 'Vladimir Fadeev'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/kirlf/ModulationPy'
LICENSE = 'BSD 3-Clause'
VERSION = '0.1.8'
setup(
name="ModulationPy",
version=VERSION,
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'numpy>=1.7.1',
'matplotlib>=2.2.2',
],
python_requires='>=3.6.4',
# package_dir = {'': 'src'},
packages=['ModulationPy'],
# metadata to display on PyPI
license=LICENSE,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
keywords="communications digital modulation demodulation psk qam",
url=URL, # project home page, if any
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Operating System :: Unix',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
]
)