Skip to content

Commit

Permalink
Add pip requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyedryn committed Jul 27, 2021
1 parent 0dbb725 commit 207b98e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 2 additions & 0 deletions elikopy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import elikopy.core
import elikopy.individual_subject_processing
import elikopy.utils
import elikopy.utilsSynb0Disco
import elikopy.modelSynb0Disco
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
16 changes: 11 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,23 @@
print(e.errno)

setuptools.setup(
name="elikopy-qdessain-msimon", # Replace with your own username
version="0.0.1",
name="elikopy",
packages = ['elikopy'],
license='agpl-3.0',
version="0.2",
author="qdessain, msimon",
author_email="[email protected], [email protected]",
description="A set of tools for analysing dMRI",
url="https://github.com/Hyedryn/python_dti",
packages=setuptools.find_packages(),
url="https://github.com/Hyedryn/elikopy",
download_url = 'https://github.com/Hyedryn/elikopy/archive/refs/tags/folder_structrure_v1.tar.gz',
#packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: AGPLv3 License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.7',
install_requires=[
Expand Down

0 comments on commit 207b98e

Please sign in to comment.