Skip to content

Commit

Permalink
Merge pull request #1779 from backend-developers-ltd/remove_tests_fro…
Browse files Browse the repository at this point in the history
…m_dist

remove tests from package distribution
  • Loading branch information
gus-opentensor authored Apr 10, 2024
2 parents 6474c02 + 66ffcc6 commit 53175a5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
# DEALINGS IN THE SOFTWARE.

from setuptools import setup, find_packages
from pkg_resources import parse_requirements
from os import path
from io import open
import codecs
import re
import os
import pathlib
import subprocess


def read_requirements(path):
Expand Down Expand Up @@ -68,7 +66,7 @@ def read_requirements(path):
long_description_content_type="text/markdown",
url="https://github.com/opentensor/bittensor",
author="bittensor.com",
packages=find_packages(),
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
author_email="",
license="MIT",
Expand Down

0 comments on commit 53175a5

Please sign in to comment.