From 1b9f0c47a6e4ef0d19c652d6476923f6e437b28c Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Fri, 13 Dec 2019 16:19:06 -0500 Subject: [PATCH] Fix build system --- setup.py | 5 +++-- fwx.py => src/fwx/__init__.py | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename fwx.py => src/fwx/__init__.py (100%) diff --git a/setup.py b/setup.py index fd073a8..2f28f44 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,15 @@ with open('README.md', 'r') as fh: setuptools.setup( name='fwx', - version='0.0.1', + version='0.0.6', author='David Kerkeslager', author_email='kerkeslager+pypi@gmail.com', description="fwx isn't a framework, it's a library.", long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/kerkeslager/fwx', - py_modules=['fwx'], + packages=setuptools.find_packages('src'), + package_dir={ '': 'src' }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: GNU Affero General Public License v3', diff --git a/fwx.py b/src/fwx/__init__.py similarity index 100% rename from fwx.py rename to src/fwx/__init__.py -- 2.20.1