generated from cormorack/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Requirements.txt and Project Build Changes
- Loading branch information
1 parent
874c052
commit e41f401
Showing
5 changed files
with
24 additions
and
17 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,5 +1,7 @@ | ||
include LICENSE | ||
include README.md | ||
include requirements.txt | ||
|
||
recursive-exclude jupyterbook * | ||
recursive-exclude docs * | ||
recursive-exclude notebooks * |
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,12 @@ | ||
requests | ||
prefect>=2 | ||
echopype>=0.6.3 | ||
jinja2 | ||
prefect-dask | ||
pydantic | ||
prefect-aws | ||
prefect-azure | ||
prefect-dask | ||
jupyter | ||
jupyter-book | ||
fastapi |
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,5 +1,6 @@ | ||
[metadata] | ||
name = echoflow | ||
# version = 0.1.1 | ||
maintainer = Soham Butala | ||
maintainer_email = [email protected] | ||
description = Sonar conversion pipeline tool with echopype | ||
|
@@ -17,27 +18,14 @@ classifiers = | |
Programming Language :: Python :: 3.10 | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Topic :: Scientific/Engineering | ||
author = Landung Setiawan | ||
author_email = [email protected] | ||
author = Soham Butala and Landung Setiawan | ||
author_email = [email protected] | [email protected] | ||
platforms = OS Independent | ||
|
||
[options] | ||
packages = find: | ||
platforms = any | ||
include_package_data = True | ||
install_requires = | ||
requests | ||
prefect>=2 | ||
echopype>=0.6.3 | ||
jinja2 | ||
prefect-dask | ||
pydantic | ||
prefect-aws | ||
prefect-azure | ||
prefect-dask | ||
jupyter | ||
jupyter-book | ||
fastapi | ||
python_requires = >=3.8,<3.11 | ||
setup_requires = | ||
setuptools_scm | ||
|
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,4 +1,8 @@ | ||
from setuptools import setup | ||
|
||
def read_requirements(): | ||
with open('requirements.txt') as req: | ||
return req.read().splitlines() | ||
|
||
if __name__ == "__main__": | ||
setup() | ||
setup(install_requires=read_requirements()) |