Spaces:
Sleeping
Sleeping
Create setup.py
Browse files
setup.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import setuptools
|
2 |
+
|
3 |
+
with open("README.md", "r", encoding="utf-8") as f:
|
4 |
+
LONG_DESCRIPTION = f.read()
|
5 |
+
|
6 |
+
setuptools.setup(
|
7 |
+
name="lab-report-analyzer",
|
8 |
+
version="0.1.0",
|
9 |
+
author="mdasad3617",
|
10 |
+
author_email="[email protected]",
|
11 |
+
description="This is a simple project to summarize text using transformers and Gradio.",
|
12 |
+
long_description=LONG_DESCRIPTION,
|
13 |
+
long_description_content_type="text/markdown",
|
14 |
+
url="https://github.com/mdasad3617/genai-lab-report-analyzer",
|
15 |
+
project_urls={
|
16 |
+
"Bug Tracker": "https://github.com/mdasad3617/genai-lab-report-analyzer/issues",
|
17 |
+
},
|
18 |
+
package_dir={"": "src"},
|
19 |
+
packages=setuptools.find_packages(where="src"),
|
20 |
+
classifiers=[
|
21 |
+
"Programming Language :: Python :: 3",
|
22 |
+
"License :: OSI Approved :: MIT License",
|
23 |
+
"Operating System :: OS Independent",
|
24 |
+
],
|
25 |
+
python_requires=">=3.9",
|
26 |
+
entry_points={
|
27 |
+
'console_scripts': [
|
28 |
+
'lab-report-analyzer=api.app:main',
|
29 |
+
],
|
30 |
+
},
|
31 |
+
)
|