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
467ea50e
Commit
467ea50e
authored
May 23, 2014
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Normalize whitespace
parent
771e5600
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
setup.py
setup.py
+17
-17
No files found.
setup.py
View file @
467ea50e
...
...
@@ -119,20 +119,20 @@ setup_params = dict(
author
=
"Python Packaging Authority"
,
author_email
=
"distutils-sig@python.org"
,
license
=
"PSF or ZPL"
,
long_description
=
long_description
,
keywords
=
"CPAN PyPI distutils eggs package management"
,
url
=
"https://pypi.python.org/pypi/setuptools"
,
test_suite
=
'setuptools.tests'
,
src_root
=
src_root
,
packages
=
setuptools
.
find_packages
(),
package_data
=
package_data
,
long_description
=
long_description
,
keywords
=
"CPAN PyPI distutils eggs package management"
,
url
=
"https://pypi.python.org/pypi/setuptools"
,
test_suite
=
'setuptools.tests'
,
src_root
=
src_root
,
packages
=
setuptools
.
find_packages
(),
package_data
=
package_data
,
py_modules
=
[
'pkg_resources'
,
'easy_install'
],
py_modules
=
[
'pkg_resources'
,
'easy_install'
],
zip_safe
=
True
,
zip_safe
=
True
,
cmdclass
=
{
'test'
:
test
},
entry_points
=
{
cmdclass
=
{
'test'
:
test
},
entry_points
=
{
"distutils.commands"
:
[
"%(cmd)s = setuptools.command.%(cmd)s:%(cmd)s"
%
locals
()
for
cmd
in
SETUP_COMMANDS
...
...
@@ -178,7 +178,7 @@ setup_params = dict(
},
classifiers
=
textwrap
.
dedent
(
"""
classifiers
=
textwrap
.
dedent
(
"""
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Python Software Foundation License
...
...
@@ -196,20 +196,20 @@ setup_params = dict(
Topic :: System :: Systems Administration
Topic :: Utilities
"""
).
strip
().
splitlines
(),
extras_require
=
{
extras_require
=
{
"ssl:sys_platform=='win32'"
:
"wincertstore==0.2"
,
"certs"
:
"certifi==1.0.1"
,
},
dependency_links
=
[
dependency_links
=
[
'https://pypi.python.org/packages/source/c/certifi/certifi-1.0.1.tar.gz#md5=45f5cb94b8af9e1df0f9450a8f61b790'
,
'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2'
,
],
scripts
=
[],
tests_require
=
[
scripts
=
[],
tests_require
=
[
'setuptools[ssl]'
,
'pytest'
,
],
setup_requires
=
[
setup_requires
=
[
]
+
pytest_runner
,
)
...
...
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