Skip to content

Commit

Permalink
Packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
cjgrady committed May 18, 2021
1 parent b79a65b commit 154a064
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
Empty file added lm_test/__init__.py
Empty file.
Empty file added lm_test/base/__init__.py
Empty file.
Empty file added lm_test/tests/__init__.py
Empty file.
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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()
Expand All @@ -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'],
)

0 comments on commit 154a064

Please sign in to comment.