ConceptAttention / setup.py
helblazer811's picture
"Orphan branch commit with a readme"
55866f4
raw
history blame contribute delete
251 Bytes
from setuptools import setup, find_packages
# with open("requirements.txt") as f:
# requirements = f.read().splitlines()
setup(
name='concept_attention',
version='0.1',
packages=find_packages(),
# install_requires=requirements
)