Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Mar 12, 2017
1 parent d86aea0 commit 0ea371e
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Changelog
=========

0.3.0:
0.3.0 (2017-03-12):
- rewritten as a Python package

0.2.0:
0.2.0 (2016-08-24):
- some small fixes and improvements

0.1.0:
0.1.0 (2016-08-04):
- first public release
- HinetDoctor.py: check dependencies
- HinetContRequest.py: request continuous data from Hi-net
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include LICENSE
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
|build|
|release|
|pypi|
|license|

.. |build| image:: https://img.shields.io/travis/seisman/HinetPy/master.svg
.. |release| image:: https://img.shields.io/github/release/seisman/HinetPy.svg
.. |license| image:: https://img.shields.io/github/license/seisman/HinetPy.svg
.. |pypi| image:: https://img.shields.io/pypi/v/HinetPy.svg

`HinetPy`_ is a Python package aiming to automate and simplify tedious data
request, downloading and format conversion tasks related to `NIED Hi-net`_.
Expand Down
49 changes: 40 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,44 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from codecs import open
from os import path

from distutils.core import setup
here = path.abspath(path.dirname(__file__))

setup(name='HinetPy',
version='0.3.0',
description='A Python Client for Hi-net',
author='Dongdong Tian',
author_email='seisman.info@gmail.com',
license='MIT',
url='https://github.com/seisman/HinetPy',
packages=['HinetPy'],
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='HinetPy',
version='0.3.0',

description='A NIED Hi-net web service client '
'and win32 tools for seismologists.',
long_description=long_description,

url='https://github.com/seisman/HinetPy',

author='Dongdong Tian',
author_email='seisman.info@gmail.com',

classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Utilities',
],
keywords='NIED Hi-net related tasks',
packages=['HinetPy'],
install_requires=['requests'],
license='MIT',
)

0 comments on commit 0ea371e

Please sign in to comment.