-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (45 loc) · 1.46 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
47
48
49
from distutils.core import setup
# Taken from scikit-learn setup.py
DISTNAME = 'pyComm'
DESCRIPTION = 'End-to-End learnding based Digital Communication Algorithms with Python'
LONG_DESCRIPTION = open('README.md').read()
LONG_DESCRIPTION = 'Readme'
MAINTAINER = 'Mayank Kumar Pal'
MAINTAINER_EMAIL = 'mynkpl1998@gmail.com'
URL = 'https://github.com/mynkpl1998/pyComm'
VERSION = '0.1.0'
#This is a list of files to install, and where
#(relative to the 'root' dir, where setup.py is)
#You could be more specific.
files = ["tests/*"]
setup(
name=DISTNAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
#license=LICENSE,
url=URL,
version=VERSION,
#Name the folder where your packages live:
#(If you have other packages (dirs) or modules (py files) then
#put them into the package directory - they will be found
#recursively.)
packages=['pyComm', 'pyComm.tests'],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'torch'
],
#'package' package must contain files (see list above)
#This dict maps the package name =to=> directories
#It says, package *needs* these files.
#package_data={'commpy': files},
python_requires = '>=3.8',
#'runner' is in the root.
#scripts=["runner"],
#test_suite='nose.collector',
#tests_require=['nose'],
#long_description=LONG_DESCRIPTION,
#long_description_content_type="text/markdown",
)