-
Notifications
You must be signed in to change notification settings - Fork 14
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
1 parent
fa8c8a0
commit a0621a5
Showing
9 changed files
with
16 additions
and
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# air in China |
Binary file not shown.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,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] | ||
|
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 +1 @@ | ||
|
||
http://github.com/ernw/python-wcfbin/tarball/master#egg=wcf-binary-parser-0.5.3 |
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,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'] | ||
) | ||
|