Metadata-Version: 1.1
Name: sci
Version: 0.0.5
Summary: a loose collection of frequently used functions in Scientific Computing put into a python package
Home-page: https://github.com/FredHutch/sci-package
Author: Dirk Petersen
Author-email: dp@nowhere.com
License: UNKNOWN
Download-URL: https://github.com/FredHutch/sci-package/tarball/0.0.5
Description: sci-pkg
        =======
        
        A Python 3 package or simply a collection of functions used in scientific computing
        
        design goals
        ------------
        
        1. simplicity: wrap frequently used workflows into simple functions that make life easier for
           scientists.
        2. functional programming paradigm: While using classes is permitted we encourage writing fewer
           classes and more functions (perhaps with decorators)
        3. easy to use docstrings, a docsting should tart with an example use case.
        4. Cross-platform: The code should work on Linux (RHEL and Debian based), Windows and Mac OS X.
        5. Python 3 compatible, In fact it would be best if the code did not even work with Python 2.x.
        
        How to contribute
        -----------------
        
        1. ``git clone git@github.com:FredHutch/sci-pkg.git``
        2. create a new branch (eg : sci-yourname)
        3. paste your function into module sci-pkg/sci/scinew.py and add a new import statement for the
           required packages.
        4. Make sure you add an example call in the first line of the doc string.
        5. Add your testcase to sci-pkg/tests
        
Keywords: hpc,scientific computing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Unix Shell
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
