chore: stop using dynamic build version
diff --git a/molecule/default/tools/install-dependencies b/molecule/default/tools/install-dependencies
index cbbee53..f5774fb 100755
--- a/molecule/default/tools/install-dependencies
+++ b/molecule/default/tools/install-dependencies
@@ -5,9 +5,6 @@
   --extra-index-url https://vexxhost.github.io/wheels/alpine-3.15/ \
   'openstacksdk<0.99.0'
 
-# Generate dynamic `galaxy.yml` file
-python3.9 ./tools/generate-galaxy-yml.py
-
 # Get the path for the collection
 COLLECTION_PATH="${HOME}/.ansible/collections/ansible_collections/vexxhost/atmosphere"
 
diff --git a/setup.cfg b/setup.cfg
deleted file mode 100644
index 19a7912..0000000
--- a/setup.cfg
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (c) 2022 VEXXHOST, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License"); you may
-# not use this file except in compliance with the License. You may obtain
-# a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.
-
-[metadata]
-name = ansible-collection-atmosphere
diff --git a/setup.py b/setup.py
deleted file mode 100644
index dd38643..0000000
--- a/setup.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright (c) 2022 VEXXHOST, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License"); you may
-# not use this file except in compliance with the License. You may obtain
-# a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.
-
-import setuptools
-
-setuptools.setup(pbr=True)
diff --git a/tools/generate-galaxy-yml.py b/tools/generate-galaxy-yml.py
deleted file mode 100644
index d8e2163..0000000
--- a/tools/generate-galaxy-yml.py
+++ /dev/null
@@ -1,28 +0,0 @@
-import yaml
-from pbr.version import VersionInfo
-
-GALAXY_YML = {
-    'namespace': 'vexxhost',
-    'name': 'atmosphere',
-    'version': VersionInfo('ansible-collection-atmosphere').release_string().replace('.dev', '-'),
-    'readme': 'README.md',
-    'authors': [
-        "Mohammed Naser <mnaser@vexxhost.com>",
-    ],
-    'dependencies': {
-        'ansible.posix': '1.3.0',
-        'ansible.utils': '2.5.2',
-        'community.crypto': '2.2.3',
-        'community.general': '4.5.0',
-        'kubernetes.core': '2.3.2',
-        'openstack.cloud': '1.7.0',
-    },
-    'build_ignore': [
-        '.tox',
-        '.vscode',
-        'doc',
-    ],
-}
-
-with open('galaxy.yml', 'w') as f:
-    yaml.dump(GALAXY_YML, f, default_flow_style=False)
diff --git a/tox.ini b/tox.ini
index 5070305..f08624a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -23,7 +23,6 @@
     TERM
     ATMOSPHERE_*
 commands_pre =
-    python3 {toxinidir}/tools/generate-galaxy-yml.py
     ansible-galaxy collection install -f {toxinidir}
 
 [testenv:build]