-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added multiple files for future PyPI package upload.
- Improved function inline docs. - Added function to change file extensions in a given directory. - Better log formatting. Signed-off-by: schlopp96 <[email protected]>
- Loading branch information
Showing
4 changed files
with
134 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include *.txt | ||
recursive-include PyFiTransfer *.gitkeep | ||
recursive-include img *.png |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
PyLoadBar==0.0.6 | ||
PyLoadBar==0.0.7.1 | ||
setuptools==58.1.0 |
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,34 @@ | ||
import pathlib | ||
from setuptools import setup, find_packages | ||
|
||
readme = pathlib.Path("readme.md").read_text() | ||
reqs = pathlib.Path("requirements.txt").read_text() | ||
setup( | ||
name="PyFiTransfer", | ||
version="0.4.0", | ||
description= | ||
'Program built to easily transfer files of a specified extension-type from a starting directory to desired destination.', | ||
url='https://github.com/schlopp96/PyFiTransfer', | ||
author='schlopp96', | ||
author_email='[email protected]', | ||
long_description=readme, | ||
long_description_content_type='text/markdown', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=[reqs], | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: End Users/Desktop", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Natural Language :: English", | ||
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Utilities", | ||
], | ||
keywords=[ | ||
'file', 'transfer', 'script', 'files', 'directory', 'directories' | ||
]) |