Skip to content

Commit

Permalink
v0.0.1 inital release
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed Nov 23, 2022
1 parent f18b71e commit 9e346c4
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__/
*.egg-info/
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# Muller-EOT
A Python package for M. Müller implementation of the Equation of Time
![PyPi](https://img.shields.io/pypi/v/muller-eot)
![license](https://img.shields.io/github/license/cyschneck/Muller-EOT)

A Python package for [M. Müller implementation of the "Equation of Time - Problem in Astronomy"](http://info.ifpan.edu.pl/firststep/aw-works/fsII/mul/mueller.pdf)

## Overview
## Documentation
## Dependencies
## Install
PyPi pip install at [pypi.org/project/muller-eot/](https://pypi.org/project/muller-eot/)

```
pip install muller-eot
```
## Examples
## Tests
## TODO:
Binary file added dist/muller_eot-0.0.1-py3-none-any.whl
Binary file not shown.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
matplotlib==3.1.0
44 changes: 44 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# -*- coding: utf-8 -*-

# Python Package Setup
from setuptools import setup, find_namespace_packages

VERSION="0.0.1"
DESCRIPTION="A Python package for M. Müller implementation of the Equation of Time"

with open("README.md", "r") as f:
long_description_readme = f.read()

setup(
name="muller-eot",
version=VERSION,
description=DESCRIPTION,
long_description=long_description_readme,
long_description_content_type='text/markdown',
url="https://github.com/cyschneck/Muller-EOT",
download_url="https://github.com/cyschneck/Muller-EOT/archive/refs/tags/v{0}.tar.gz".format(VERSION),
author="cyschneck (C. Y. Schneck)",
keywords=["astronomy", "python", "eot", "equation of time", "eccentricity", "obliquity"],
license="MIT",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Astronomy"
],
packages=find_namespace_packages(include=['muller_eot',
'muller_eot.*']),
include_package_data=True,
install_requires=[
"matplotlib>=3.1.0",
],
python_requires='>=3.7'
)

0 comments on commit 9e346c4

Please sign in to comment.