Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DetectiveKiwi committed Apr 8, 2022
0 parents commit bb7ea08
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Empty file added README.md
Empty file.
Empty file added nsdmd/__init__.py
Empty file.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="nsdmd",
version="0.0.1",
author="John Ferre",
author_email="[email protected]",
description="Non Stationary Dynamical Mode Decomposition",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jbferre/nsdmd",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
python_requires='>=3.8',
install_requires=["numpy"]
)

0 comments on commit bb7ea08

Please sign in to comment.