-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change package structure * remove synthetic data init imports * format setup.py
- Loading branch information
1 parent
32e4b16
commit 35ac96a
Showing
5 changed files
with
18 additions
and
5 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 |
---|---|---|
|
@@ -4,5 +4,3 @@ isort>=5.11.5, <6.0.0 | |
pyright | ||
pytest>=7.2.2, <8.0.0 | ||
pytest-cov>=4.0.0, <5.0.0 | ||
|
||
|
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,3 +1,11 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
extend-ignore = E203,E501 | ||
|
||
[options] | ||
packages = | ||
tot | ||
tot.data_processing | ||
tot.datasets | ||
tot.evaluation | ||
tot.synthetic_data |
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 |
---|---|---|
|
@@ -16,14 +16,13 @@ | |
exec(f.read()) | ||
|
||
setuptools.setup( | ||
name="test-of-time", | ||
name="tot", | ||
version=__version__, | ||
description="Evaluate forecasting models", | ||
author="Oskar Triebe", | ||
author_email="[email protected]", | ||
url="https://github.com/ourownstory/test-of-time", | ||
license="MIT", | ||
packages=["tot"], | ||
python_requires=">=3.6", | ||
install_requires=requirements, | ||
extras_require={ | ||
|
@@ -35,6 +34,15 @@ | |
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
include_package_data=True, | ||
packages=[ # add all packages | ||
"tot", | ||
"tot.models", | ||
"tot.datasets", | ||
"tot.synthetic_data", | ||
"tot.evaluation", | ||
"tot.data_processing", | ||
"tot.evaluation", | ||
], | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"License :: OSI Approved :: MIT License", | ||
|
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 +0,0 @@ | ||
from .scaler import Scaler # noqa: F401 to evade flake8 | ||
Empty file.