"...git@developer.sourcefind.cn:OpenDAS/torch-sparce.git" did not exist on "ceb47f1d7678d2f155144abd3e0eefb24684d35e"
Commit c60fb37e authored by Evelina Bakhturina's avatar Evelina Bakhturina
Browse files

update


Signed-off-by: default avatarEvelina Bakhturina <ebakhturina@nvidia.com>
parent c15829b5
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
from .package_info import ( from .package_info import (
__description__, __description__,
__contact_names__,
__url__, __url__,
__download_url__, __download_url__,
__keywords__, __keywords__,
......
...@@ -17,11 +17,12 @@ ...@@ -17,11 +17,12 @@
MAJOR = 1 MAJOR = 1
MINOR = 0 MINOR = 0
# Use the following formatting: (major, minor, patch) # Use the following formatting: (major, minor)
VERSION = (MAJOR, MINOR) VERSION = (MAJOR, MINOR)
__version__ = '.'.join(map(str, VERSION)) __version__ = '.'.join(map(str, VERSION))
__package_name__ = 'megatron-lm' __package_name__ = 'megatron-lm'
__contact_names__ = 'NVIDIA INC'
__url__ = 'https://github.com/NVIDIA/Megatron-LM' __url__ = 'https://github.com/NVIDIA/Megatron-LM'
__download_url__ = 'https://github.com/NVIDIA/Megatron-LM/releases' __download_url__ = 'https://github.com/NVIDIA/Megatron-LM/releases'
__description__ = 'Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism.' __description__ = 'Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism.'
......
...@@ -3,3 +3,5 @@ torch ...@@ -3,3 +3,5 @@ torch
torchvision torchvision
six six
regex regex
numpy
...@@ -24,6 +24,7 @@ if sys.version_info < (3,): ...@@ -24,6 +24,7 @@ if sys.version_info < (3,):
from megatron.package_info import ( from megatron.package_info import (
__description__, __description__,
__contact_names__,
__url__, __url__,
__download_url__, __download_url__,
__keywords__, __keywords__,
...@@ -61,6 +62,8 @@ setuptools.setup( ...@@ -61,6 +62,8 @@ setuptools.setup(
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
# The project's main homepage. # The project's main homepage.
url=__url__, url=__url__,
author=__contact_names__,
maintainer=__contact_names__,
# The licence under which the project is released # The licence under which the project is released
license=__license__, license=__license__,
classifiers=[ classifiers=[
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment