Skip to content

Commit 28c532d

Browse files
committed
Update setup.py to include subpackages
1 parent c41674a commit 28c532d

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,11 +1,11 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
with open("README.md", "r") as f:
44
long_description = f.read()
55

66
setup(
77
name = 'code_tokenize',
8-
packages = ['code_tokenize'],
8+
packages = find_packages(exclude=['tests']),
99
version = '0.2.0',
1010
license='MIT',
1111
description = 'Fast program tokenization and structural analysis in Python',

0 commit comments

Comments
 (0)