# encoding: UTF-8from setuptools import setup, find_packagesfrom opendatatools import __version__ as verimport codecsimport osdef read(fname):return codecs.open(os.path.join(os.path.dirname(__file__), fname), 'r', encoding='utf-8').read()def read_install_requires():with codecs.open('requirements.txt', 'r', encoding='utf-8') as f:res = f.readlines()res = list(map(lambda s: s.replace('\n', ''), res))return ressetup(# Install data files specified in MANIFEST.in file.include_package_data=True,#package_data={'': ['*.json', '*.css', '*.html']},# Package Informationname='OpenDataTools',url='https://github.com/PKUJohnson/OpenData',version=ver,license='Apache 2.0',# informationdescription='Open source data tools.',long_description="",keywords="data,crawler,free",classifiers=["Development Status :: 4 - Beta","Intended Audience :: Developers","Intended Audience :: Education","Intended Audience :: End Users/Desktop","Intended Audience :: Financial and Insurance Industry","Intended Audience :: Information Technology","Intended Audience :: Science/Research","License :: OSI Approved :: Apache Software License","Natural Language :: Chinese (Simplified)","Natural Language :: English","Operating System :: Microsoft :: Windows","Operating System :: Unix","Programming Language :: Python :: 2.7","Programming Language :: Python :: 3.6",],# installinstall_requires=read_install_requires(),packages=find_packages(),# authorauthor='PKUJohnson')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。