-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
60 lines (54 loc) · 1.91 KB
/
setup.cfg
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
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
# [versioneer]
# VCS = git
# style = pep440-pre
# versionfile_source = lyceanem/_version.py
# versionfile_build = lyceanem/_version.py
# tag_prefix =
# parentdir_prefix = lyceanem-
[metadata]
name = lyceanem
version = attr: lyceanem.__version__
author = Timothy Pelham
author_email = t.g.pelham@bristol.ac.uk
url = https://lyceanem-python.readthedocs.io/en/latest/
description = LyceanEM is a Python library for modelling electromagnetic propagation for sensors and communications.
long_description = file: README.md
classifiers=
Development Status :: 3 - Alpha
Environment :: GPU :: NVIDIA CUDA
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Other Audience
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Affero General Public License v3
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Education
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Visualization
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
long_description_content_type = text/markdown
license_file = LICENSE.txt
[options]
packages = find:
python_requires = >=3.6
install_requires =
numpy
matplotlib
numba
meshio
pygmsh
scipy
zip_safe = True
include_package_data = True