Skip to content

Commit 6a0781f

Browse files
committed
Simplify setup, be explicit about sortedcontainers package
1 parent 008fa62 commit 6a0781f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22
from setuptools.command.test import test as TestCommand
33
import sortedcontainers
44
import sys
@@ -27,7 +27,7 @@ def run_tests(self):
2727
author_email='[email protected]',
2828
url='http://www.grantjenks.com/docs/sortedcontainers/',
2929
license='Apache 2.0',
30-
packages=find_packages(exclude=('tests', 'docs')),
30+
packages=['sortedcontainers'],
3131
tests_require=['tox'],
3232
cmdclass={'test': Tox},
3333
install_requires=[],

0 commit comments

Comments
 (0)