-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/deterministic-provides-extras
- Loading branch information
Showing
34 changed files
with
665 additions
and
222 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,7 @@ | ||
[bumpversion] | ||
current_version = 41.2.0 | ||
commit = True | ||
tag = True | ||
|
||
[bumpversion:file:setup.cfg] | ||
|
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,16 +136,18 @@ dependencies, and perhaps some data files and scripts:: | |
author="Me", | ||
author_email="[email protected]", | ||
description="This is an Example Package", | ||
license="PSF", | ||
keywords="hello world example examples", | ||
url="http://example.com/HelloWorld/", # project home page, if any | ||
project_urls={ | ||
"Bug Tracker": "https://bugs.example.com/HelloWorld/", | ||
"Documentation": "https://docs.example.com/HelloWorld/", | ||
"Source Code": "https://code.example.com/HelloWorld/", | ||
} | ||
}, | ||
classifiers=[ | ||
'License :: OSI Approved :: Python Software Foundation License' | ||
] | ||
|
||
# could also include long_description, download_url, classifiers, etc. | ||
# could also include long_description, download_url, etc. | ||
) | ||
|
||
In the sections that follow, we'll explain what most of these ``setup()`` | ||
|
@@ -2234,6 +2236,7 @@ boilerplate code in some cases. | |
license = BSD 3-Clause License | ||
classifiers = | ||
Framework :: Django | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.5 | ||
|
||
|
@@ -2679,42 +2682,6 @@ A few important points for writing revision control file finders: | |
inform the user of the missing program(s). | ||
|
||
|
||
Subclassing ``Command`` | ||
----------------------- | ||
|
||
Sorry, this section isn't written yet, and neither is a lot of what's below | ||
this point. | ||
|
||
XXX | ||
|
||
|
||
Reusing ``setuptools`` Code | ||
=========================== | ||
|
||
``ez_setup`` | ||
------------ | ||
|
||
XXX | ||
|
||
|
||
``setuptools.archive_util`` | ||
--------------------------- | ||
|
||
XXX | ||
|
||
|
||
``setuptools.sandbox`` | ||
---------------------- | ||
|
||
XXX | ||
|
||
|
||
``setuptools.package_index`` | ||
---------------------------- | ||
|
||
XXX | ||
|
||
|
||
Mailing List and Bug Tracker | ||
============================ | ||
|
||
|
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 |
---|---|---|
|
@@ -37,6 +37,7 @@ | |
#include <windows.h> | ||
#include <tchar.h> | ||
#include <fcntl.h> | ||
#include <process.h> | ||
|
||
int child_pid=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
Oops, something went wrong.