File: setup.cfg

package info (click to toggle)
python-trx-python 0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: python: 3,394; makefile: 66
file content (49 lines) | stat: -rw-r--r-- 993 bytes parent folder | download
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
[metadata]
name = trx-python
url = https://github.com/tee-ar-ex/trx-python
classifiers =
    Development Status :: 3 - Alpha
    Environment :: Console
    Intended Audience :: Science/Research
    License :: OSI Approved :: BSD License
    Operating System :: OS Independent
    Programming Language :: Python
    Topic :: Scientific/Engineering

license = BSD License
description = Experiments with new file format for tractography
long_description = file: README.md
long_description_content_type = text/markdown
platforms = OS Independent

packages = find:
include_package_data = True


[options]
python_requires = >=3.8
setup_requires =
    packaging >= 19.0
    cython >= 0.29
install_requires =
    setuptools_scm
    deepdiff
    nibabel >= 5
    numpy >= 1.22

[options.extras_require]
doc = astroid==2.15.8
    sphinx
    pydata-sphinx-theme
    sphinx-autoapi
    numpydoc

test =
    flake8
    psutil
    pytest >= 7
    pytest-console-scripts >= 0

all =
    %(doc)s
    %(test)s