https://github.com/alecheckert/saspt
Raw File
Tip revision: 773292fc245c01ceb8e1f7a7e50b475aa003f00c authored by Alec Heckert on 09 January 2022, 01:02:27 UTC
fixed a bug saspt.plot
Tip revision: 773292f
setup.cfg
[metadata]
name = saspt
version = 0.2.0
author = Alec Heckert
author_email = alecheckert@gmail.com
description = State arrays for single particle tracking
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/alecheckert/saspt
classifiers = 
    Programming Language :: Python :: 3
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent

[options]
package_dir =
packages = find:
python_requires = >=3.6
include_package_data = True
install_requires =
    numpy
    scipy
    pandas
    matplotlib
    seaborn
    tqdm
    dask
    
[options.package_data]
sample_tracks = saspt/samples/sample_tracks.csv
splines = saspt/splines/*.csv

[options.packages.find]
where = 
back to top