Skip to content

Commit

Permalink
Merge pull request #3 from JordanWelsman/change-name
Browse files Browse the repository at this point in the history
To-do list complete. Merging now.
  • Loading branch information
JordanWelsman authored Mar 15, 2023
2 parents bb68c27 + fad273b commit 4bc176f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ test.py
# Setuptools
build/
dist/
openxml.egg-info/
freexml.egg-info/
**/__pycache__/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# openxml
# freexml

An open-source XML generator and parser.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
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',
long_description=long_description,
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',
Expand All @@ -44,7 +44,7 @@
"Programming Language :: Python :: 3.12"
],
package_data = {
'openxml': py_modules
'freexml': py_modules
},
python_requires=python_version,
install_requires = [
Expand Down
8 changes: 4 additions & 4 deletions unbuild
Original file line number Diff line number Diff line change
@@ -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]$ ]]
Expand All @@ -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."
Expand Down

0 comments on commit 4bc176f

Please sign in to comment.