Skip to content

Commit

Permalink
First attempt at setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Nikutta committed Jul 27, 2018
1 parent 1ae043d commit 8ed8616
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from setuptools import setup, find_packages

setup(
name = 'ndiminterpolation',
version = '1.0.0',
url = 'https://github.com/rnikutta/ndiminterpolation.git',
author = 'Robert Nikutta',
author_email = '[email protected]',
description = 'Description of my package',
packages = find_packages(),
install_requires = ['numpy', 'scipy', 'matplotlib'],
)

0 comments on commit 8ed8616

Please sign in to comment.