-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[REFAC] allowing the project to be installed as a python package
- Loading branch information
Showing
34 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/python | ||
# coding: utf-8 | ||
|
||
""" | ||
Allow the project to be installed as a local package, using : | ||
python -m pip install . | ||
or | ||
python -m pip install -e . | ||
The -e option stands for editable, which allows to change the | ||
source code of the package without having to reinstall it. Using this option | ||
will add the current directory (.) to the system path. | ||
""" | ||
|
||
from setuptools import setup, find_packages | ||
|
||
requires = [ | ||
] | ||
|
||
setup( | ||
name = 'narps_open', | ||
version = '0.1.0', | ||
description = 'The NARPS open pipelines project :\ | ||
a codebase reproducing the 70 pipelines of the NARPS study (Botvinik-Nezer et al., 2020).', | ||
long_description = 'file: README.md', | ||
long_description_content_type = 'text/markdown', | ||
author = '', | ||
author_email = '', | ||
url = 'https://github.com/Inria-Empenn/narps_open_pipelines', | ||
include_package_data = True, | ||
python_requires = '>=3.8,<3.11', | ||
install_requires = requires, | ||
classifiers = [ | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8' | ||
], | ||
project_urls = { | ||
'Bug Tracker': 'https://github.com/Inria-Empenn/narps_open_pipelines/issues', | ||
'Source': 'https://github.com/Inria-Empenn/narps_open_pipelines', | ||
}, | ||
packages = find_packages(exclude=('tests', 'examples')), | ||
data_files = [ | ||
('narps_open/pipelines', ['narps_open/pipelines/analysis_pipelines_config.tsv']) | ||
] | ||
) |
Empty file.
File renamed without changes.