Skip to content

Commit

Permalink
distribution works
Browse files Browse the repository at this point in the history
  • Loading branch information
awohns committed Feb 24, 2020
1 parent 4660150 commit 3076c47
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
author_email="[email protected]",
description="Infer node ages from a tree sequence topology",
long_description=long_description,
packages=["tsdate"],
long_description_content_type="text/markdown",
url="http://pypi.python.org/pypi/tsdate",
entry_points={
'console_scripts': [
'tsdate=tsdate.cli:tsdate_main',
'tsdate=tsdate.__main__:main',
]
},
setup_requires=['setuptools_scm'],
Expand Down
6 changes: 2 additions & 4 deletions tsdate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

from .date import ( # NOQA
date, build_prior_grid
)

from .date import date, build_prior_grid # NOQA

from .provenance import __version__ # NOQA
from .provenance import __version__ # NOQA
2 changes: 1 addition & 1 deletion tsdate/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import tsdate.cli as cli
from . import cli


def main():
Expand Down

0 comments on commit 3076c47

Please sign in to comment.