-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
) |