Skip to content

Commit c4c7412

Browse files
mariomario
authored andcommitted
added setup
1 parent 67b2dda commit c4c7412

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

code/python/setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="cni-tlbx", # Replace with your own username
8+
version="1.0.0",
9+
author="Mario Senden",
10+
author_email="mario.senden@maastrichtuniversity.nl",
11+
description="computational neuroimaging toolbox",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/ccnmaastricht/CNI_toolbox",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
19+
"Operating System :: OS Independent",
20+
],
21+
python_requires='>=3',
22+
install_requires=['numpy>=1.18.3',
23+
'scipy>=1.4.1',
24+
'opencv-python>=4.2.0.34'],
25+
)

0 commit comments

Comments
 (0)