Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
edknv committed Jan 11, 2024
1 parent bbaadae commit eed9205
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import itertools
import os

from setuptools import setup
from setuptools import find_packages, setup

VERSION = "0.0.1"

Expand Down Expand Up @@ -43,16 +43,17 @@ def read_requirements(filename):
description="Metric calculation library",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Marc Romeyn",
url="https://github.com/marcromeyn/crossfit",
author="NVIDIA Corporation",
url="https://github.com/NVIDIA-Merlin/crossfit",
project_urls={
"Issues": "https://github.com/marcromeyn/crossfit/issues",
"CI": "https://github.com/marcromeyn/crossfit/actions",
"Changelog": "https://github.com/marcromeyn/crossfit/releases",
"Issues": "https://github.com/NVIDIA-Merlin/crossfit/issues",
"CI": "https://github.com/NVIDIA-Merlin/crossfit/actions",
"Changelog": "https://github.com/NVIDIA-Merlin/crossfit/releases",
},
license="Apache License, Version 2.0",
version=VERSION,
packages=["crossfit"],
packages=find_packages(),
package_dir={"crossfit": "crossfit"},
install_requires=requirements["base"],
include_package_data=True,
extras_require={
Expand Down

0 comments on commit eed9205

Please sign in to comment.