-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from weberlab-hhu/deprecatation_settings
deprecation warnings and disabling of unused args
- Loading branch information
Showing
7 changed files
with
89 additions
and
39 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
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
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
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,58 @@ | ||
[build-system] | ||
requires = ["setuptools < 72.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "helixer" | ||
version = "0.3.4" | ||
description = "Deep Learning fun on gene structure data" | ||
readme = "README.md" | ||
requires-python = ">=3.10.12" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: POSIX :: Linux", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
] | ||
dependencies = [ | ||
"geenuff @ git+https://github.com/weberlab-hhu/[email protected]", | ||
"sqlalchemy==1.3.22", | ||
"tensorflow>=2.6.2", | ||
"tensorflow-addons>=0.21.0", | ||
"nni", | ||
"seaborn", | ||
"Keras<3.0.0", | ||
"keras_layer_normalization", | ||
"terminaltables", | ||
"HTSeq", | ||
"intervaltree", | ||
"numpy", | ||
"h5py", | ||
"multiprocess", | ||
"numcodecs", | ||
"appdirs" | ||
] | ||
authors = [ | ||
{name = "Alisandra K. Denton"}, | ||
{name = "Felix Holst"}, | ||
{name = "Janina Mass"}, | ||
{name = "Anthony Bolger"}, | ||
{name = "Felicitas Kindel"}, | ||
{name = "Christopher Guenther"}, | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/weberlab-hhu/Helixer" | ||
"Documentation" = "https://github.com/weberlab-hhu/Helixer" | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"helixer", | ||
"helixer.core", | ||
"helixer.prediction", | ||
"helixer.evaluation", | ||
"helixer.tests", | ||
"helixer.export" | ||
] | ||
package-data = {helixer = ["testdata/*.fa", "testdata/*.gff"]} | ||
script-files = ["Helixer.py", "fasta2h5.py", "geenuff2h5.py", "helixer/prediction/HybridModel.py", | ||
"scripts/fetch_helixer_models.py"] |
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,28 +1,3 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name='helixer', | ||
version='0.3.4', | ||
description='Deep Learning fun on gene structure data', | ||
packages=['helixer', 'helixer.core', 'helixer.prediction', 'helixer.evaluation', 'helixer.tests', 'helixer.export'], | ||
package_data={'helixer': ['testdata/*.fa', 'testdata/*.gff']}, | ||
install_requires=["geenuff @ git+https://github.com/weberlab-hhu/[email protected]", | ||
"sqlalchemy==1.3.22", | ||
"tensorflow>=2.6.2", | ||
"tensorflow-addons>=0.21.0", | ||
"nni", | ||
"seaborn", | ||
"Keras<3.0.0", | ||
"keras_layer_normalization", | ||
"terminaltables", | ||
"HTSeq", | ||
"intervaltree", | ||
"numpy", | ||
"h5py", | ||
"multiprocess", | ||
"numcodecs", | ||
"appdirs", | ||
], | ||
scripts=["Helixer.py", "fasta2h5.py", "geenuff2h5.py", "helixer/prediction/HybridModel.py", "scripts/fetch_helixer_models.py"], | ||
zip_safe=False, | ||
) | ||
setup(zip_safe=False) |