Skip to content

Commit

Permalink
Update setup.py to include subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricrupb committed Jun 28, 2022
1 parent c41674a commit 28c532d
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
@@ -1,11 +1,11 @@
from setuptools import setup
from setuptools import setup, find_packages

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

setup(
name = 'code_tokenize',
packages = ['code_tokenize'],
packages = find_packages(exclude=['tests']),
version = '0.2.0',
license='MIT',
description = 'Fast program tokenization and structural analysis in Python',
Expand Down

0 comments on commit 28c532d

Please sign in to comment.