Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
deepspeed
Commits
60097136
Unverified
Commit
60097136
authored
Nov 25, 2020
by
Shaden Smith
Committed by
GitHub
Nov 25, 2020
Browse files
Adds long_description to setup.py (#560)
parent
16313a96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
setup.py
setup.py
+7
-0
No files found.
setup.py
View file @
60097136
...
@@ -163,9 +163,16 @@ print(f'install_requires={install_requires}')
...
@@ -163,9 +163,16 @@ print(f'install_requires={install_requires}')
print
(
f
'compatible_ops=
{
compatible_ops
}
'
)
print
(
f
'compatible_ops=
{
compatible_ops
}
'
)
print
(
f
'ext_modules=
{
ext_modules
}
'
)
print
(
f
'ext_modules=
{
ext_modules
}
'
)
# Parse README.md to make long_description for PyPI page.
thisdir
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
with
open
(
os
.
path
.
join
(
thisdir
,
'README.md'
),
encoding
=
'utf-8'
)
as
fin
:
readme_text
=
fin
.
read
()
setup
(
name
=
'deepspeed'
,
setup
(
name
=
'deepspeed'
,
version
=
version_str
,
version
=
version_str
,
description
=
'DeepSpeed library'
,
description
=
'DeepSpeed library'
,
long_description
=
readme_text
,
long_description_content_type
=
'text/markdown'
,
author
=
'DeepSpeed Team'
,
author
=
'DeepSpeed Team'
,
author_email
=
'deepspeed@microsoft.com'
,
author_email
=
'deepspeed@microsoft.com'
,
url
=
'http://deepspeed.ai'
,
url
=
'http://deepspeed.ai'
,
...
...
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