-
Notifications
You must be signed in to change notification settings - Fork 2
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 #106 from SNEWS2/sybenzvi/csv-to-sql
Sybenzvi/csv to sql
- Loading branch information
Showing
6 changed files
with
2,993 additions
and
2,873 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,58 +1,60 @@ | ||
[tool.poetry] | ||
name = "snews-cs" | ||
version = "2.2.0" | ||
description = "An alert application for observing supernovas." | ||
authors = ["Sebastian Torres-Lara <[email protected]>", "Melih Kara <[email protected]>"] | ||
license = "BSD 3-Clause" | ||
readme = "README.md" | ||
packages = [{include = "snews_cs"}] | ||
homepage = "https://github.com/SNEWS2/SNEWS_Coincidence_System.git" | ||
repository = "https://github.com/SNEWS2/SNEWS_Coincidence_System.git" | ||
documentation = "https://snews-coincidence-system.readthedocs.io/" | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
"License :: OSI Approved :: BSD License", | ||
] | ||
|
||
[tool.poetry.scripts] | ||
snews_cs = "snews_cs.__main__:main" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9, <3.13" | ||
click = "^8.1.7" | ||
hop-client = "^0.8.0" | ||
ipython = "<7.33.0" # Constrained by snews_pt | ||
numpy = "^1.26.0" | ||
pandas = "^2.1.1" | ||
python-dotenv = "0.19.2" # Constrained by snews_pt | ||
pymongo = "^4.5.0" | ||
slack-sdk = "^3.22.0" | ||
snews-pt = "^1.3.3" | ||
matplotlib = "^3.8.0" | ||
scipy = "^1.11.3" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
autopep8 = "^2.0.4" | ||
flake8 = "^6.1.0" | ||
mongomock = "^4.1.2" | ||
pytest = "<6.3.0" # Constrained by snews_pt | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
sphinx = "<5" # Constrained by snews_pt | ||
sphinx-pdj-theme = "^0.4.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "snews-cs" | ||
version = "2.2.0" | ||
description = "An alert application for observing supernovas." | ||
authors = ["Sebastian Torres-Lara <[email protected]>", "Melih Kara <[email protected]>"] | ||
license = "BSD 3-Clause" | ||
readme = "README.md" | ||
packages = [{include = "snews_cs"}] | ||
homepage = "https://github.com/SNEWS2/SNEWS_Coincidence_System.git" | ||
repository = "https://github.com/SNEWS2/SNEWS_Coincidence_System.git" | ||
documentation = "https://snews-coincidence-system.readthedocs.io/" | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Astronomy", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
"License :: OSI Approved :: BSD License", | ||
] | ||
|
||
[tool.poetry.scripts] | ||
snews_cs = "snews_cs.__main__:main" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9, <3.13" | ||
click = "^8.1.7" | ||
hop-client = "^0.8.0" | ||
ipython = "<7.33.0" # Constrained by snews_pt | ||
numpy = "^1.26.0" | ||
pandas = "^2.1.1" | ||
python-dotenv = "0.19.2" # Constrained by snews_pt | ||
pymongo = "^4.5.0" | ||
slack-sdk = "^3.22.0" | ||
snews-pt = "^1.3.3" | ||
matplotlib = "^3.8.0" | ||
scipy = "^1.11.3" | ||
sqlalchemy = "^2.0.32" | ||
tabulate = "^0.9.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
autopep8 = "^2.0.4" | ||
flake8 = "^6.1.0" | ||
mongomock = "^4.1.2" | ||
pytest = "<6.3.0" # Constrained by snews_pt | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
sphinx = "<5" # Constrained by snews_pt | ||
sphinx-pdj-theme = "^0.4.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
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 +1 @@ | ||
version = '2.2.0' | ||
version = '2.2.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
Oops, something went wrong.