Skip to content

Commit

Permalink
Exclude tests/ from packaging (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
dringsim authored Aug 28, 2023
1 parent 083ea06 commit ecbebe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import re

from setuptools import find_packages, setup
from setuptools import setup


with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
Expand Down Expand Up @@ -44,7 +44,7 @@ def read(f):
maintainer_email='aio-libs@googlegroups.com',
url='https://github.com/aio-libs/aiomcache/',
license='BSD',
packages=find_packages(),
packages=("aiomcache",),
python_requires='>=3.7',
install_requires=('typing_extensions>=4; python_version<"3.11"',),
tests_require=("nose",),
Expand Down

0 comments on commit ecbebe9

Please sign in to comment.