| 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', | |
| ) | |