Skip to content

Commit

Permalink
Uploaded to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukeaso-astron committed Dec 11, 2024
1 parent b4d4b50 commit 4e55c88
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plotastrodata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import warnings

warnings.simplefilter('ignore', UserWarning)
__version_info__ = (1, 0, 1)
__version__ = '.'.join(map(str, __version_info__))
25 changes: 25 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[metadata]
name = plotastrodata
author = yusukeaso-astron
version = attr: plotastrodata.__version__
description = plotastrodata can be used mainly to make figures from FITS files, as well as other analyses in astronomy.
long_description = file: README.md
keywords = astronomy, FITS, plot
license = GNU General Public License Version 3
url = https://github.com/yusukeaso-astron/plotastrodata
download_url = https://github.com/yusukeaso-astron/plotastrodata
classifiers = Programming Language :: Python :: 3


[options]
packages = plotastrodata
zip_safe = False
include_packge_data = True
python_requires = >=3.8
install_requires =
numpy
scipy
astropy
matplotlib
ptemcee
corner
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from setuptools import setup

setup()

0 comments on commit 4e55c88

Please sign in to comment.