Skip to content

Commit

Permalink
Merge pull request #52 from rsdefever/fix/packaging
Browse files Browse the repository at this point in the history
Fix packaging issues for non-editable install
  • Loading branch information
rmatsum836 authored Dec 20, 2020
2 parents 2150d1d + 0e0b3af commit 89b552a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions mosdef_slitpore/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import utils

21 changes: 11 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from setuptools import setup
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand

setup(name='mosdef_slitpore',
version='0.0',
description='routines and functions for graphene slitpore simulations',
author='Ray Matsumoto',
author_email='ray.a.matsumoto@vanderbilt.edu',
license='MIT',
packages=['mosdef_slitpore'],
zip_safe=False,
)
setup(
name='mosdef_slitpore',
version='0.0',
description='routines and functions for graphene slitpore simulations',
author='Ray Matsumoto',
author_email='ray.a.matsumoto@vanderbilt.edu',
license='MIT',
packages=find_packages(),
zip_safe=False,
)

0 comments on commit 89b552a

Please sign in to comment.