Skip to content
Snippets Groups Projects
Commit 138f2346 authored by Hossein Rafipoor's avatar Hossein Rafipoor
Browse files

changed the project name

parent cccc5122
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import scipy.stats as st
from . import utils
class BallStick():
class BallStick:
def __init__(self, n_sticks, bvals, bvecs):
self.param_names = ['d', 'f_0'] + [f'{p}_{i + 1}' for i in range(n_sticks) for p in ['f', 'phi', 'theta']]
self.bvals = bvals
......
setup.py 0 → 100644
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt', 'r') as f:
requirements = [line.strip() for line in f.readlines() if len(line.strip()) > 0]
test_requirements = ['pytest', ]
setup(
author="Hossein Rafipoor, Michiel Cottaar, Saad Jbabdi",
author_email='hossein.rafipoor@ndcn.ox.ac.uk',
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
entry_points={
'console_scripts': [],
},
install_requires=requirements,
long_description=readme,
include_package_data=True,
name='bench',
packages=find_packages(include=['hmwt', 'hmwt.*']),
test_suite='hmwt.tests',
tests_require=test_requirements,
url='https://git.fmrib.ox.ac.uk/hossein/bench.git',
version='0.0.1',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment