File size: 564 Bytes
196bee3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
    name='EEGFaceSem',
    version='0.1.0',
    description='Code for the CVPR 2024 paper "[Your Paper Title Here]".',
    author='Anonymous Author',
    author_email='anonymous@email.com',
    packages=find_packages(),
    install_requires=[
        # The list of requirements will be in requirements.txt
    ],
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
    ],
    python_requires='>=3.6',
)