Skip to content

Commit 01a038b

Browse files
committed
Add machinery to install module directory.
1 parent 7f03eed commit 01a038b

File tree

5 files changed

+34
-0
lines changed

5 files changed

+34
-0
lines changed

findoutlie/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
""" Init for findoutlie module
2+
"""
3+
4+
__version__ = '0.1a0'

pyproject.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[build-system]
2+
requires = ["flit_core >=2,<4"]
3+
build-backend = "flit_core.buildapi"
4+
5+
[tool.flit.metadata]
6+
module = "findoutlie"
7+
author = "The team"
8+
author-email = "team@email"
9+
home-page = "https://github.com/nipraxis-fall-2022/diagnostics-example"
10+
classifiers = ["License :: OSI Approved :: BSD License",
11+
"Programming Language :: Python :: 3"]
12+
description-file="README.md"
13+
# Check against requirements.txt
14+
requires = [
15+
'nibabel',
16+
'numpy',
17+
'scipy',
18+
'matplotlib',
19+
]
20+
requires-python=">=3.6"

pytest.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[pytest]
2+
addopts = --ignore-glob=solutions/*

requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nibabel
2+
numpy
3+
scipy
4+
matplotlib
5+
nipraxis

test_requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Test requirements
2+
-r requirements.txt
3+
pytest

0 commit comments

Comments
 (0)