-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from rsdefever/fix/packaging
Fix packaging issues for non-editable install
- Loading branch information
Showing
2 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from . import utils | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
) |