-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (69 loc) · 2.26 KB
/
setup.py
File metadata and controls
73 lines (69 loc) · 2.26 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
Created on 2022-Dec-31
@author: matt-chv
"""
import re
from os.path import abspath, join, pardir
from setuptools import setup
fp_readme = abspath(join(__file__, pardir, "README.md"))
with open(fp_readme, "r", encoding="utf-8") as fi:
long_description = fi.read()
with open("mmWrt/__init__.py", "r") as fi:
package_version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fi.read(), re.MULTILINE
).group(1)
setup(
name='mmWrt',
version=package_version,
author='matt-chv',
author_email="contact@matthieuchevrier.com",
description='minimal raytracing code example for MIMO FMCW radar',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/matt-chv/mmWrt',
project_urls={
"Bug Tracker": "https://github.com/matt-chv/mmWrt/issues",
},
license='LICENSE',
keywords='radar MIMO FMCW raytracing',
packages=['mmWrt'],
package_dir={'mmWrt': abspath(join(__file__, pardir, "mmWrt"))},
python_requires='>=3.8',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
],
install_requires=["numpy", "scipy", "matplotlib", "semver"],
extras_require={
"dev": [
"antlr4-python3-runtime==4.11",
"coverage",
"darglint",
"flake8",
"jupyter",
"jupyterlab-myst",
"myst-parser",
"nbsphinx",
"pyroma",
"pytest",
"recommonmark",
"sphinx",
"sphinx_markdown_builder",
"sphinx-rtd-theme",
"sympy",
"tox",
"twine",
"wheel"]}
)