Skip to content
This repository has been archived by the owner on May 22, 2020. It is now read-only.

Commit

Permalink
Moved Python scripts to kltools package.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmyersturnbull committed Dec 13, 2016
1 parent 3f12e9d commit de86022
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
Empty file added python/kltools/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions python/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env python3
# coding=utf-8

from distutils.core import setup

setup(
name='kltools',
version='0.1',
description='Command-line Python tools for the Kokel Lab',
author='Douglas Myers-Turnbull',
url='https://github.com/kokellab/kltools',
packages=['kltools'],
classifiers=[
"Development Status :: 3 - Alpha",
'Intended Audience :: Science/Research',
'Natural Language :: English'
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
)

0 comments on commit de86022

Please sign in to comment.