Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Nov 15, 2024
1 parent 05f94d1 commit 6818f7d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 31 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,6 @@ dmypy.json

# Pyre type checker
.pyre/

.idea/

8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
version = "0.0.0"
dependencies = []
version = "0.9.0"
dependencies = [
"numpy",
"scipy",
"scipy"
]
name = "icecube-voka"
description = "Sanity checks on sequences/histograms using ML techniques. "
readme = "README.md"
Expand Down
31 changes: 2 additions & 29 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@
import pathlib
import pkg_resources
from setuptools import setup
from setuptools import setup # type: ignore[import]

with pathlib.Path('requirements.txt').open() as requirements_txt:
requirements = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]

setup(
name='voka',
version='0.9.0',
description='Histograms comparisons using unsupervised statistical machine learning.',
url='https://github.com/icecube/voka',
author='Alex Olivas',
author_email='alex.r.olivas@gmail.com',
license='MIT',
packages=['voka'],
install_requires=requirements,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)
setup()

0 comments on commit 6818f7d

Please sign in to comment.