-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (51 loc) · 1.63 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
[metadata]
name = pygadmpa
description = 'analysis module for Gadget'
long_description = 'A light-weighted analysis module for galaxy simulations performed by the SPH code Gadget.'
url = https://bitbucket.org/broett/pygad/
author_email = [email protected]
author = Bernhard Roettgers
requires_python = >=3.6.0
license = GPL-2+
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: POSIX
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Physics
project_urls =
Bug Tracker = https://bitbucket.org/broett/pygad/issues
Source Code = https://bitbucket.org/broett/pygad
[options]
packages = find:
install_requires =
numpy~=1.21
matplotlib~=3.4.3
astropy
scipy~=1.7.3
h5py>=3.0
Pillow>=8.
tests_require =
pytest
pytest-codecov
include_package_data = True
; [tool:pytest]
; # Options for py.test:
; # Specify command line options as you would do when invoking py.test directly.
; # e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
; # in order to write a coverage file that can be read by Jenkins.
; addopts = --color=yes --cov=pygad --cov-report=term -ra --ignore=pygad/test --ignore=pygad/_version.py
; log_cli = 1
; log_cli_level = INFO
; testpaths = pygad/test
; norecursedirs = pygad/test
[versioneer]
VCS = git
style = pep440
versionfile_source = pygad/_version.py
; versionfile_build = pygad/_version.py
tag_prefix = v
parentdir_prefix = pygad-