1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
import io
import os
import re
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(path, encoding="utf-8"):
path = os.path.join(here, path)
with io.open(path, encoding=encoding) as fp:
return fp.read()
def version(path):
"""Obtain the packge version from a python file e.g. pkg/__init__.py
See <https://packaging.python.org/en/latest/single_source_version.html>.
"""
version_file = read(path)
version_match = re.search(
r"""^__version__ = ['"]([^'"]*)['"]""", version_file, re.M
)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name="vega_datasets",
version=version("vega_datasets/__init__.py"),
description="A Python package for offline access to Vega datasets",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Jake VanderPlas",
author_email="jakevdp@gmail.com",
maintainer="Jake VanderPlas",
maintainer_email="jakevdp@gmail.com",
url="http://github.com/altair-viz/vega_datasets",
download_url="http://github.com/altair-viz/vega_datasets",
license="MIT",
install_requires=["pandas"],
python_requires=">=3.5",
tests_require=["pytest"],
packages=find_packages(exclude=["tools"]),
package_data={
"vega_datasets": [
"datasets.json",
"dataset_info.json",
"local_datasets.json",
os.path.join("_data", "*.json"),
os.path.join("_data", "*.csv"),
os.path.join("_data", "*.tsv"),
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
project_urls={
"Bug Reports": "https://github.com/altair-viz/vega_datasets/issues",
"Source": "https://github.com/altair-viz/vega_datasets",
},
)
|