-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
forgotten static files are in the distribution now
- Loading branch information
Showing
3 changed files
with
8 additions
and
8 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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
|
@@ -2,4 +2,3 @@ Matplotlib | |
BioPython | ||
SciPy | ||
Django | ||
|
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 |
---|---|---|
|
@@ -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', | ||
|
@@ -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, | ||
) |