Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ To run sasdata from the source, create a python environment using python 3.10 or
$ conda activate sasdata
(sasdata) $ python -m pip install -e .

If you are wanting to work on the development of `sasdata`, then the packages to run
unit tests and build documentation can be installed with::

$ python -m pip install -r requirements-dev.txt

## Data Formats

The `Loader()` class is directly callable so a transient call can be made to the class or, for cases where repeated calls
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ files = [ "requirements.txt" ]

[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
test = [ "requirements-test.txt" ]
dev = [ "requirements-dev.txt" ]


[tool.hatch.version]
Expand Down
8 changes: 8 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-r requirements-test.txt

# Documentation (future)
sphinx
html5lib

# Other stuff
pre-commit
3 changes: 3 additions & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Unit testing
pytest
unittest-xml-reporting
matplotlib
12 changes: 0 additions & 12 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,3 @@ lxml
# Calculation
numpy
scipy

# Unit testing
pytest
unittest-xml-reporting

# Documentation (future)
sphinx
html5lib

# Other stuff
matplotlib
pre-commit
Loading