Skip to content

Commit

Permalink
undate codes
Browse files Browse the repository at this point in the history
  • Loading branch information
hebingchang committed Feb 15, 2017
1 parent fa8c8a0 commit a0621a5
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 104 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# air in China
Binary file modified dist/openair-0.1.0.tar.gz
Binary file not shown.
Empty file removed function/__init__.py
Empty file.
62 changes: 0 additions & 62 deletions function/function.py

This file was deleted.

36 changes: 0 additions & 36 deletions function/station_data.py

This file was deleted.

4 changes: 2 additions & 2 deletions openair.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Metadata-Version: 1.0
Name: openair
Version: 0.1.0
Summary: This project is to fetch data from the official Silverlight application of Ministry of Environmental Protection of China (http://106.37.208.233:20035/), which publish realtime air quality. 本项目旨在方便地获取官方发布的全国空气质量数据
Version: 0.1.17
Summary: This project is to fetch data from the official Silverlight application of Ministry of Environmental Protection of China (http://106.37.208.233:20035/), which publish realtime air quality. 本项目旨在方便地获取官方发布的中国空气质量数据
Home-page: https://ovo.qaq.ac.cn
Author: hebingchang
Author-email: [email protected]
Expand Down
1 change: 1 addition & 0 deletions openair.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ openair/air_class.py
openair.egg-info/PKG-INFO
openair.egg-info/SOURCES.txt
openair.egg-info/dependency_links.txt
openair.egg-info/requires.txt
openair.egg-info/top_level.txt
openair/data/__init__.py
openair/data/station_data.py
2 changes: 1 addition & 1 deletion openair.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@

http://github.com/ernw/python-wcfbin/tarball/master#egg=wcf-binary-parser-0.5.3
14 changes: 11 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pip

def install(package):
pip.main(['install', package])

install('git+git://github.com/ernw/python-wcfbin.git')

setup(
name='openair',
version='0.1.0',
version='0.1.17',
keywords = ('aqi', 'air', 'china'),
description='This project is to fetch data from the official Silverlight application of Ministry of Environmental Protection of China (http://106.37.208.233:20035/), which publish realtime air quality. 本项目旨在方便地获取官方发布的全国空气质量数据。',
description='This project is to fetch data from the official Silverlight application of Ministry of Environmental Protection of China (http://106.37.208.233:20035/), which publish realtime air quality. 本项目旨在方便地获取官方发布的中国空气质量数据。',
license='MIT',
author='hebingchang',
author_email='[email protected]',
url='https://ovo.qaq.ac.cn',
platforms = 'any',
packages = ['openair', 'openair.data'],
install_require = ["wcf-binary-parser"]
install_requires = ["xmltodict", "wcf-binary-parser==0.5.3"],
dependency_links = ['http://github.com/ernw/python-wcfbin/tarball/master#egg=wcf-binary-parser-0.5.3']
)

0 comments on commit a0621a5

Please sign in to comment.