Spaces:
Sleeping
Sleeping
Create setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
setup(
|
| 4 |
+
name='bert_streamlit_app',
|
| 5 |
+
version='1.0',
|
| 6 |
+
packages=find_packages(),
|
| 7 |
+
install_requires=[
|
| 8 |
+
'streamlit',
|
| 9 |
+
'transformers',
|
| 10 |
+
'torch',
|
| 11 |
+
'pandas'
|
| 12 |
+
],
|
| 13 |
+
entry_points={
|
| 14 |
+
'console_scripts': [
|
| 15 |
+
'run-app=app:main'
|
| 16 |
+
]
|
| 17 |
+
},
|
| 18 |
+
description='A Streamlit application for analyzing BERT tokens and embeddings.',
|
| 19 |
+
author='Elias Andrade',
|
| 20 |
+
author_email='elias@example.com',
|
| 21 |
+
url='https://github.com/chaos4455/bert_streamlit_app',
|
| 22 |
+
)
|