Skip to content

Commit

Permalink
OSS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeplf committed Mar 10, 2022
1 parent 201505b commit 5b86620
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions atlas_densities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
Tools for building the main atlas volumetric files
and artefacts.
"""
from atlas_densities.version import VERSION as __version__ # pylint: disable=W0611
4 changes: 4 additions & 0 deletions atlas_densities/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"""version"""
from pkg_resources import get_distribution # type: ignore

VERSION = get_distribution("atlas_densities").version
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@

from setuptools import find_packages, setup

with open("README.rst") as f:
README = f.read()

setup(
name="atlas-densities",
author="Blue Brain Project, EPFL",
description="Library containing command lines and tools to compute volumetric cell densities in the rodent brain",
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/BlueBrain/atlas-densities",
download_url="https://github.com/BlueBrain/atlas-densities",
license="Apache-2",
python_requires=">=3.7.0",
install_requires=[
"atlas-commons>=0.1.3",
"atlas-commons>=0.1.4",
"click>=7.0",
"cgal-pybind>=0.1.1",
"numpy>=1.15.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ black_version = 22.0
envlist =
check-version
lint
py38
docs
tests

[testenv]
extras = tests
Expand Down

0 comments on commit 5b86620

Please sign in to comment.