Skip to content

Commit cef53a1

Browse files
committed
[feat] add pip setup
1 parent 6e71c66 commit cef53a1

File tree

10 files changed

+36
-6
lines changed

10 files changed

+36
-6
lines changed

.github/workflows/linux_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
- name: Run tests
4141
shell: bash -l {0}
4242
run: |
43-
cd FastAnalysis/
44-
pytest tests/test_load.py
43+
cd fastanalysis/
44+
python3 -m pytest tests

.github/workflows/macos_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
- name: Run tests
4141
shell: bash -l {0}
4242
run: |
43-
cd FastAnalysis/
44-
pytest tests/test_load.py
43+
cd fastanalysis/
44+
python3 -m pytest tests

.github/workflows/win_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ jobs:
4040
- name: Run tests
4141
shell: bash -l {0}
4242
run: |
43-
cd FastAnalysis/
44-
pytest tests/test_load.py
43+
cd fastanalysis/
44+
python -m pytest tests

FastAnalysis/tests/__init__.py

Whitespace-only changes.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# FastAnalysis
2+
FastAnalysis is a python module for analysing result from [FastTrack](http://www.fasttrack.sh) tracking software.
3+
4+
## Project info
5+
![Linux tests](https://github.com/FastTrackOrg/FastAnalysis/workflows/Linux%20tests/badge.svg) ![Macos tests](https://github.com/FastTrackOrg/FastAnalysis/workflows/Macos%20tests/badge.svg) ![Windows tests](https://github.com/FastTrackOrg/FastAnalysis/workflows/Windows%20tests/badge.svg)
6+
7+
## Installation
8+
To install the module:
9+
```
10+
pip install fastanalysis
11+
```
12+
13+
## Development
14+
The project is under active development and do not have public API documentation, a more or less complete API documentation can be generated using Sphinx.

fastanalysis/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .load import Load
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name="fastanalysis",
5+
version="0.0.1",
6+
author="Benjamin Gallois",
7+
author_email="[email protected]",
8+
description="A python library to open the tracking data from FastTrack the tracking software",
9+
url="https://github.com/FastTrackOrg/FastAnalysis",
10+
packages=['fastanalysis'],
11+
install_requires=['pandas', 'numpy', 'matplotlib'],
12+
license='MIT',
13+
python_requires='>=3.6',
14+
zip_safe=False
15+
)

0 commit comments

Comments
 (0)