Skip to content

Commit

Permalink
Config for GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
lecriste committed Nov 1, 2024
1 parent 4b3d0a2 commit 4844bc0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/usr/bin/env python
from setuptools import setup, find_packages

with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="bba_pipeline",
author="Blue Brain Project, EPFL",
Expand All @@ -10,7 +13,10 @@
"Package defining a SnakeMake pipeline to create the Blue Brain Atlas datasets"
"and push them into Nexus."
),
license="BBP-internal-confidential",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BlueBrain/bbp-atlas-pipeline",
license="Apache-2.0",
python_requires=">=3.9",
install_requires=[
"nexusforge>=0.8.2",
Expand Down

0 comments on commit 4844bc0

Please sign in to comment.