-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,8 @@ | ||
# __init__.py | ||
|
||
from normalizations import total_count_normalization | ||
from normalizations import percentile_normalization | ||
from normalizations import quartile_normalization | ||
from normalizations import tmm_normalization | ||
|
||
__version__ = "0.1" |
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
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,34 @@ | ||
# setup.py | ||
|
||
|
||
PACKAGE = "pygmn" | ||
NAME = "pygmn" | ||
DESCRIPTION = "Package with methods for normalization matrices of genes expression." | ||
AUTHOR = "Grigory Feoktistov" | ||
AUTHOR_EMAIL = "[email protected]" | ||
URL = "https://github.com/ficusss/PyGMNormalize" | ||
VERSION = __import__(PACKAGE).__version__ | ||
|
||
|
||
setup( | ||
name=NAME, | ||
version=VERSION, | ||
description=DESCRIPTION, | ||
long_description=read("README.md"), | ||
author=AUTHOR, | ||
author_email=AUTHOR_EMAIL, | ||
license="BSD", | ||
url=URL, | ||
packages=find_packages(exclude=["tests.*", "tests"]), | ||
package_data=find_package_data(PACKAGE, only_in_packages=False), | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Framework :: Django", | ||
], | ||
zip_safe=False, | ||
) |