Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
6d45fa03
Commit
6d45fa03
authored
6 years ago
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delint
parent
eeeb9b27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
setup.py
setup.py
+10
-5
No files found.
setup.py
View file @
6d45fa03
...
...
@@ -45,8 +45,8 @@ def _gen_console_scripts():
)
if
any
(
os
.
environ
.
get
(
var
)
not
in
(
None
,
""
,
"0"
)
for
var
in
var_names
):
return
yield
(
"easy_install-{shortver} = setuptools.command.easy_install:main"
.
format
(
shortver
=
sys
.
version
[:
3
])
)
tmpl
=
"easy_install-{shortver} = setuptools.command.easy_install:main"
yield
tmpl
.
format
(
shortver
=
sys
.
version
[:
3
]
)
readme_path
=
os
.
path
.
join
(
here
,
'README.rst'
)
...
...
@@ -90,8 +90,10 @@ def pypi_link(pkg_filename):
setup_params
=
dict
(
name
=
"setuptools"
,
version
=
"38.7.0"
,
description
=
"Easily download, build, install, upgrade, and uninstall "
"Python packages"
,
description
=
(
"Easily download, build, install, upgrade, and uninstall "
"Python packages"
),
author
=
"Python Packaging Authority"
,
author_email
=
"distutils-sig@python.org"
,
long_description
=
long_description
,
...
...
@@ -139,7 +141,10 @@ setup_params = dict(
"requires.txt = setuptools.command.egg_info:write_requirements"
,
"entry_points.txt = setuptools.command.egg_info:write_entries"
,
"eager_resources.txt = setuptools.command.egg_info:overwrite_arg"
,
"namespace_packages.txt = setuptools.command.egg_info:overwrite_arg"
,
(
"namespace_packages.txt = "
"setuptools.command.egg_info:overwrite_arg"
),
"top_level.txt = setuptools.command.egg_info:write_toplevel_names"
,
"depends.txt = setuptools.command.egg_info:warn_depends_obsolete"
,
"dependency_links.txt = setuptools.command.egg_info:overwrite_arg"
,
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment