-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
setup(
name='ASL-parameters-generator',
version='1.0.0',
packages=find_packages(), # Automatically find packages in your project
install_requires=[
'blinker==1.8.2',
'click==8.1.7',
'Flask==3.0.3',
'Flask-Cors==4.0.1',
'gunicorn==22.0.0',
'itsdangerous==2.2.0',
'Jinja2==3.1.4',
'MarkupSafe==2.1.5',
'packaging==24.0',
'Werkzeug==3.0.3'
],
include_package_data=True, # Include additional files specified in MANIFEST.in
description='Website for the user to upload ASL images formatted in BIDS setup and get a report'
' of the study\'s parameter in return', # Short description of your project
author='Hanliang Xu', # Your name
author_email='[email protected]', # Your email
url='https://github.com/Hanliang-Xu/Hanliang-Xu.github.io', # URL to your project's repository
classifiers=[
'Programming Language :: Python :: 3',
'Framework :: Flask',
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Specify the Python versions you support
)