-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.04 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='ref_l4',
version='1.1',
packages=find_packages(),
py_modules=['dataloader', 'evaluation', 'overlaps'],
install_requires=[
# Add any dependencies your package needs here
# e.g., 'numpy', 'pandas', 'scikit-learn'
'torch', 'datasets', 'pillow', 'statistics', 'pandas', 'datasets'
],
entry_points={
'console_scripts': [
# Add any command line scripts here
# e.g., 'mycommand = mypackage.module:function'
],
},
author='Jierun Chen',
description='Evaluation code for Ref-L4, a new REC benchmark in the LMM era.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/JierunChen/Ref-L4', # Replace with your package's URL
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
license='MIT',
python_requires='>=3.6',
)