diff --git a/.gitignore b/.gitignore index 8041c46..ec2e158 100644 --- a/.gitignore +++ b/.gitignore @@ -10,5 +10,5 @@ test.py # Setuptools build/ dist/ -openxml.egg-info/ +freexml.egg-info/ **/__pycache__/ \ No newline at end of file diff --git a/README.md b/README.md index 81717d9..d54e9c0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# openxml +# freexml An open-source XML generator and parser. diff --git a/openxml/__init__.py b/freexml/__init__.py similarity index 100% rename from openxml/__init__.py rename to freexml/__init__.py diff --git a/openxml/loading/__init__.py b/freexml/loading/__init__.py similarity index 100% rename from openxml/loading/__init__.py rename to freexml/loading/__init__.py diff --git a/openxml/saving/__init__.py b/freexml/saving/__init__.py similarity index 100% rename from openxml/saving/__init__.py rename to freexml/saving/__init__.py diff --git a/setup.py b/setup.py index 57e5e2c..6a1df7d 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,12 @@ with open("README.md", "r") as fh: long_description = fh.read() -# openxml package data +# freexml package data py_modules = [] # Run setup function setup( - name='openxml', + name='freexml', version=version, description='An open-source XML generator and parser.', license='MIT', @@ -22,8 +22,8 @@ long_description_content_type='text/markdown', author='Jordan Welsman', author_email='jordan.welsman@outlook.com', - url='https://pypi.org/project/openxml/', - download_url='https://github.com/JordanWelsman/openxml/tags', + url='https://pypi.org/project/freexml/', + download_url='https://github.com/JordanWelsman/freexml/tags', classifiers=[ 'Development Status :: 1 - Planning', 'Intended Audience :: Developers', @@ -44,7 +44,7 @@ "Programming Language :: Python :: 3.12" ], package_data = { - 'openxml': py_modules + 'freexml': py_modules }, python_requires=python_version, install_requires = [ diff --git a/unbuild b/unbuild index 7911308..d3b5e76 100755 --- a/unbuild +++ b/unbuild @@ -1,13 +1,13 @@ #!/bin/sh -# openxml Unbuild Script +# freexml Unbuild Script # To be used to delete the directories & files created by `python setup.py bdist_wheel`. # Author : Jordan Welsman # Copyright : Jordan Welsman -echo "You are about to delete files & folders from openxml." -echo "These files are crucial to the ability to install and import openxml." +echo "You are about to delete files & folders from freexml." +echo "These files are crucial to the ability to install and import freexml." read -p "Do you want to continue? [Y/n]: " if [[ $REPLY =~ ^[Yy]$ ]] @@ -16,7 +16,7 @@ then rm -rf dist # remove distribution directory if exists find . -name __pycache__ -type d -print0|xargs -0 rm -r -- # remove all pycache directories find . -name .pytest_cache -type d -print0|xargs -0 rm -r -- # remove all pytest cache directories - find . -name openxml.egg-info -type d -print0|xargs -0 rm -r -- # remove all egg-info directories + find . -name freexml.egg-info -type d -print0|xargs -0 rm -r -- # remove all egg-info directories echo "Project successfully unbuilt." else echo "Operation aborted."