Skip to content

Commit

Permalink
Merge pull request #141 from sinzlab/release
Browse files Browse the repository at this point in the history
Release version 0.2.1
  • Loading branch information
christoph-blessing committed Jun 20, 2022
2 parents 59948fc + b41398a commit ea4f514
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ services:
- ".:/src/nnfabrik"
entrypoint: /bin/bash -c "cd /src/nnfabrik/docs/; make html; cd _build/html; python -m http.server 3000"


sphinx:
build: .
volumes:
- ".:/src/nnfabrik"
entrypoint: /bin/bash -c "cd /src/nnfabrik/docs/; while :; do make html; sleep 30; done"
entrypoint: /bin/bash -c "cd /src/nnfabrik/docs/; while :; do make html; sleep 30; done"
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "nnfabrik"
version = "0.2.1"
description = "A generalized model fitting pipeline"
dependencies = [
"sphinx",
"pytorch_sphinx_theme",
"recommonmark",
]

[[project.authors]]
name = "Sinz Lab"
email = "software@sinzlab.net"

[project.urls]
GitHub = "https://github.com/sinzlab/nnfabrik"

[tool.black]
line-length = 120
21 changes: 2 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,3 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
from setuptools import setup

here = path.abspath(path.dirname(__file__))

setup(
name="nnfabrik",
version="0.1.0",
description="A generalized model fitting pipeline",
author="Sinz Lab",
author_email="software@sinzlab.net",
packages=find_packages(exclude=[]),
install_requires=[
"sphinx",
"pytorch_sphinx_theme",
"recommonmark",
"ax_platform",
],
)
setup()

0 comments on commit ea4f514

Please sign in to comment.