Skip to content

Commit

Permalink
Setup: Fix package list
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed May 13, 2024
1 parent aa35052 commit ad449c5
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 @@ -6,7 +6,7 @@
"""

# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
Expand Down Expand Up @@ -56,7 +56,7 @@

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
packages=["otfmi"],

# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
Expand Down

0 comments on commit ad449c5

Please sign in to comment.