From dae77bfdbca6d72c84e8fe0d3a1813937cc6558c Mon Sep 17 00:00:00 2001 From: Andrew Fulton Date: Sat, 8 Jan 2022 15:44:04 -0700 Subject: [PATCH] updates version, repo organization, and license --- LICENSE | 2 +- pyproject.toml | 2 +- setup.py | 2 +- upath/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index bdfee518..91bad1de 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Quansight +Copyright (c) 2022, Andrew Fulton Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyproject.toml b/pyproject.toml index 8e81f5b8..251a410d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ dist-name = "universal_pathlib" author = "Andrew Fulton" author-email = "andrewfulton9@gmail.com" classifiers = [] -home-page = "https://github.com/Quansight/universal_pathlib" +home-page = "https://github.com/fsspec/universal_pathlib" keywords = "" license = "" maintainer = "Andrew Fulton" diff --git a/setup.py b/setup.py index 22ea2815..3b14ac92 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ version=__version__, author="Andrew Fulton", author_email="andrewfulton9@gmail.com", - url="https://github.com/Quansight/universal_pathlib", + url="https://github.com/fsspec/universal_pathlib", packages=setuptools.find_packages(), python_requires=">=3.7", description="pathlib api extended to use fsspec backends", diff --git a/upath/__init__.py b/upath/__init__.py index 5b5ffa8f..b1d8f0f1 100644 --- a/upath/__init__.py +++ b/upath/__init__.py @@ -1,5 +1,5 @@ """Pathlib API extended to use fsspec backends""" -__version__ = "0.0.11" +__version__ = "0.0.12" from upath.core import UPath