Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinemlarson committed Aug 27, 2020
1 parent daf895c commit d8ac8b3
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
Empty file added gnssrefl/__init__.py
Empty file.
19 changes: 19 additions & 0 deletions gnssrefl/gnssrefl.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import numpy as np

def convert(my_name):
"""
Print a line about converting a notebook.
Args:
my_name (str): person's name
Returns:
None
"""
tv = np.empty(shape=[0, 4])
year = 2020; mm = 6 ; dd = 1
for i in range(0,10):
hh = i
newl = [year, mm, dd, hh ]
tv = np.append(tv, [newl],axis=0)
print(tv)

print(f"I'll convert a notebook for you some day, {my_name}.")
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pip==19.0.3
wheel==0.33.1
numpy
scipy
wget
matplotlib
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages

with open("README.md", "r") as readme_file:
readme = readme_file.read()

requirements = ["numpy","wget","scipy","matplotlib"]

setup(
name="gnssrefl",
version="0.0.1",
author="Kristine M. Larson",
author_email="[email protected]",
description="A GNSS reflections package",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/kristinemlarson/gnssrefl/",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.7",
],
)

0 comments on commit d8ac8b3

Please sign in to comment.