Look up every module in the package

This commit is contained in:
R. Richard 2020-02-03 16:45:42 +01:00
parent 9481e8f921
commit f374cb7e46
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from os.path import dirname, realpath, join from os.path import dirname, realpath, join
from setuptools import setup from setuptools import setup, find_packages
here = dirname(realpath(__file__)) here = dirname(realpath(__file__))
@ -17,7 +17,7 @@ setup(
author='Avatao.com Innovative Learning Kft.', author='Avatao.com Innovative Learning Kft.',
author_email='support@avatao.com', author_email='support@avatao.com',
license='custom', license='custom',
packages=['tfw'], packages=find_packages(),
package_dir={'tfw': 'tfw'}, package_dir={'tfw': 'tfw'},
install_requires=requirements, install_requires=requirements,
extras_require={ extras_require={