-
Notifications
You must be signed in to change notification settings - Fork 9
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 #11 from kevinconway/pth-files
Add support for .pth file rewrites
- Loading branch information
Showing
12 changed files
with
198 additions
and
117 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 |
---|---|---|
|
@@ -52,3 +52,12 @@ docs/_build/ | |
|
||
# PyBuilder | ||
target/ | ||
|
||
# vscode | ||
.vscode/ | ||
|
||
# mypy | ||
.mypy_cache/ | ||
|
||
# pytest | ||
.pytest_cache |
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 |
---|---|---|
|
@@ -4,24 +4,22 @@ | |
from setuptools import find_packages | ||
|
||
|
||
with open('README.rst', 'r') as readmefile: | ||
with open("README.rst", "r") as readmefile: | ||
|
||
README = readmefile.read() | ||
|
||
setup( | ||
name='venvctrl', | ||
version='0.3.0', | ||
url='https://github.com/kevinconway/venvctrl', | ||
description='API for virtual environments.', | ||
name="venvctrl", | ||
version="0.4.0", | ||
url="https://github.com/kevinconway/venvctrl", | ||
description="API for virtual environments.", | ||
author="Kevin Conway", | ||
author_email="[email protected]", | ||
long_description=README, | ||
license='MIT', | ||
packages=find_packages(exclude=['tests', 'build', 'dist', 'docs']), | ||
license="MIT", | ||
packages=find_packages(exclude=["tests", "build", "dist", "docs"]), | ||
entry_points={ | ||
'console_scripts': [ | ||
'venvctrl-relocate = venvctrl.cli.relocate:main', | ||
], | ||
"console_scripts": ["venvctrl-relocate = venvctrl.cli.relocate:main"] | ||
}, | ||
include_package_data=True, | ||
) |
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
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.