Skip to content

Commit

Permalink
update setup.py to match prod repo
Browse files Browse the repository at this point in the history
  • Loading branch information
LVH-Tony committed Feb 22, 2024
1 parent e2c81ad commit c671050
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ def read_requirements(path):

# loading version from setup.py
with codecs.open(
os.path.join(here, "einstein-ait/__init__.py"), encoding="utf-8"
os.path.join(here, "einstein-ait-prod/__init__.py"), encoding="utf-8"
) as init_file:
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]", init_file.read(), re.M
)
version_string = version_match.group(1)

setup(
name="einstein-ait",
name="einstein-ait-prod",
version=version_string,
description="An incentive mechanism for Logical AI and Mathematical AI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LVH-Tony/einstein-ait",
author="bittensor.com",
url="https://github.com/ait-protocol/einstein-ait-prod",
author="ait.tech",
packages=find_packages(),
include_package_data=True,
author_email="",
Expand Down

0 comments on commit c671050

Please sign in to comment.