-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small code cleanup, and add ability to specify output directory
- Loading branch information
1 parent
298621d
commit 3a70a02
Showing
5 changed files
with
54 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
rm -r build | ||
rm -r dist | ||
rm -r "pyd2v.egg-info" | ||
python3 setup.py sdist bdist_wheel | ||
python3 -m twine upload dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
rm -r build | ||
rm -r dist | ||
rm -r "pyd2v.egg-info" | ||
python3 setup.py sdist bdist_wheel | ||
sudo pip install . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,19 @@ | |
|
||
setup( | ||
name="pymplschapters", | ||
version="1.0.2", | ||
author="PRAGMA", | ||
author_email="[email protected]", | ||
version="1.0.4", | ||
author="PHOENiX", | ||
author_email="[email protected]", | ||
description="Extract chapters from a blu-ray mpls to a matroska recognized xml file", | ||
license='MIT', | ||
license="MIT", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/imPRAGMA/pymplschapters", | ||
url="https://github.com/rlaPHOENiX/pymplschapters", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'lxml>=4.4.1' | ||
], | ||
entry_points={ | ||
'console_scripts': ['pymplschapters=pymplschapters.__init__:main'], | ||
}, | ||
install_requires=["lxml>=4.4.1"], | ||
entry_points={"console_scripts": ["pymplschapters=pymplschapters.__init__:main"]}, | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
], | ||
) |