File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments