FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ModulationPy/setup.py at master · Judithcodes/ModulationPy · GitHub
Judithcodes
/
ModulationPy
Public
forked from
kirlf/ModulationPy
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ModulationPy
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (39 loc) · 1.37 KB
Breadcrumbs
ModulationPy
/
setup.py
Copy path
File metadata and controls
46 lines (39 loc) · 1.37 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
=
'vovenur@gmail.com'
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'
,
]
)
Back
|
FazBrowse Home
|
New Git URL