Skip to content

Commit

Permalink
forgotten static files are in the distribution now
Browse files Browse the repository at this point in the history
  • Loading branch information
meren committed Aug 15, 2014
1 parent aba1e55 commit 3d208fd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
recursive-include Unittests *
recursive-include Oligotyping/utils/html/scripts *
recursive-include Oligotyping/utils/html/static *
recursive-include Oligotyping/utils/html/templates *
include CHANGELOG.md COPYING README.md requirements.txt
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ Matplotlib
BioPython
SciPy
Django

12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,19 @@

os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()

install_reqs = parse_requirements('requirements.txt')
reqs = [str(ir.req) for ir in install_reqs]

setup(
name = "Oligotyping",
name = "oligotyping",
version = "1.0",
description = "Oligotyping and minimum entropy decomposition (MED) pipeline for the analysis of marker gene amplicons",
description = "The oligotyping and minimum entropy decomposition (MED) pipeline for the analysis of marker gene amplicons",
author = u"A. Murat Eren",
author_email = "[email protected]",
license = "GPLv3+",
url = "http://oligotyping.org",
packages = find_packages(),

longer_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand All @@ -35,12 +31,14 @@
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: R',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
],

scripts = [script for script in glob.glob('bin/*') if not script.endswith('-OBSOLETE')],

include_package_data = True,
package_data={'': ['Oligotyping/utils/html/scripts/*', 'Oligotyping/utils/html/static/*', 'Oligotyping/utils/html/templates/*']},

install_requires=reqs,
)

0 comments on commit 3d208fd

Please sign in to comment.