-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from antirotor/feature/older-windows-compatibi…
…lity compatibility for windws <= 7, docstrings and few fixes
- Loading branch information
Showing
5 changed files
with
162 additions
and
62 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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
from setuptools import setup, find_packages | ||
# -*- coding: utf-8 -*- | ||
"""Metadata file.""" | ||
from setuptools import setup | ||
import os | ||
import imp | ||
from io import open | ||
|
@@ -22,20 +24,23 @@ | |
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: System :: Filesystems" | ||
"Topic :: System :: Filesystems" | ||
|
||
] | ||
|
||
setup(name='speedcopy', | ||
version=version, | ||
description=('Windows xcopy patch for shutil.copyfile' | ||
', based on pyfastcopy'), | ||
description=('Replacement or alternative for python copyfile()' | ||
'utilizing server side copy on network shares for faster' | ||
'copying.'), | ||
author='Ondrej Samohel', | ||
author_email='[email protected]', | ||
url='https://github.com/antirotor/speedcopy', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
packages=['speedcopy'], | ||
classifiers=classifiers | ||
packages=['speedcopy'], | ||
classifiers=classifiers, | ||
tests_require=['pytest'], | ||
) |
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
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
Oops, something went wrong.