diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..9787c3bdf --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" diff --git a/setup.cfg b/setup.cfg index 487f4c629..47411b27c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] -name = astronomer-operators +name = astronomer-providers version = 1.1.0 -url = https://github.com/astronomer/astronomer-operators/ +url = https://github.com/astronomer/astronomer-providers/ author = Astronomer author_email = humans@astronomer.io description = Airflow Providers containing Deferrable Operators & Sensors from Astronomer @@ -9,7 +9,9 @@ long_description = file: README.rst license = Apache License 2.0 license_files = LICENSE.txt classifiers = + Development Status :: 4 - Beta Environment :: Web Environment + Intended Audience :: Developers License :: OSI Approved :: Apache Software License Operating System :: OS Independent Programming Language :: Python @@ -17,12 +19,15 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 +project_urls = + Source Code=https://github.com/astronomer/astronomer-providers/ + Homepage=https://astronomer.io/ [options] python_requires = >=3.7 packages = find_namespace: include_package_data = true -namespace_packages = astronomer,astronomer.operators +namespace_packages = astronomer,astronomer.providers install_requires = aiohttp aiofiles diff --git a/setup.py b/setup.py deleted file mode 100644 index 606849326..000000000 --- a/setup.py +++ /dev/null @@ -1,3 +0,0 @@ -from setuptools import setup - -setup()