-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/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="blue_brain_atlas_pipeline",
author="Blue Brain Project, EPFL",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description=(
"Package defining a SnakeMake pipeline to create the Blue Brain Atlas datasets"
"and push them into Nexus."
),
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.10",
install_requires=[
"nexusforge>=0.8.2",
"click>=7.0",
"numpy>=1.19",
"pynrrd>=0.4.0",
"PyYAML>=5.3.1",
"voxcell",
"pulp==2.7.0", # snakemake 7.32.3 breaks with pulp==2.8.0
"snakemake==7.32.3",
"blue-cwl",
"python-gitlab"
],
extras_require={
"dev": ["pytest>=4.3", "pytest-cov>=2.8.0", "blue-brain-token-fetch>=1.0.0"],
"docs": ["sphinx==7.1.2", "sphinx-bluebrain-theme", "myst-parser"]
},
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["bbp-atlas=bbp_atlas_cli:execute_pipeline"]
},
)