From 154a06472e0202e6a44b76e6c34377648cdf630b Mon Sep 17 00:00:00 2001 From: CJ Grady Date: Tue, 18 May 2021 16:07:21 -0500 Subject: [PATCH] Packaging --- lm_test/__init__.py | 0 lm_test/base/__init__.py | 0 lm_test/tests/__init__.py | 0 setup.py | 13 +++++++++++-- 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 lm_test/__init__.py create mode 100644 lm_test/base/__init__.py create mode 100644 lm_test/tests/__init__.py diff --git a/lm_test/__init__.py b/lm_test/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lm_test/base/__init__.py b/lm_test/base/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lm_test/tests/__init__.py b/lm_test/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index c89eb6d..9af1787 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """Module setup file for packaging and installation.""" -from setuptools import setup +from setuptools import setup, find_packages with open('README.md') as f: readme = f.read() @@ -11,11 +11,20 @@ setup( name='lm_test', - version='1.0.0-beta.1', + version='1.0.0b2', description='Lifemapper Testing Library', long_description=readme, author='CJ Grady', author_email='cjgrady@ku.edu', url='https://github.com/lifemapper/lm_test', license=module_license, + #package_dir={'': 'lm_test'}, + packages=find_packages(), + python_requires='>=3.6, <4', + #entry_points={ + # 'console_scripts': [ + # 'run_controller=scripts/run_controller:main', + # ], + #}, + scripts=['scripts/run_controller.py'], )