-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 834 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 834 Bytes
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
"""Setup script for the sentisynth package."""
from setuptools import setup, find_packages
setup(
name="sentisynth",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
install_requires=[
"torch>=1.9.0",
"transformers>=4.10.0",
"datasets>=1.11.0",
"numpy>=1.19.5",
"scikit-learn>=0.24.2",
"pandas>=1.3.0",
"matplotlib>=3.4.2",
"seaborn>=0.11.1",
"tqdm>=4.61.2",
],
entry_points={
"console_scripts": [
"sentisynth=sentisynth.cli:main",
],
},
author="Param Kapur",
author_email="kpr.param@gmail.com",
description="Synthetic data generation for sentiment analysis",
keywords="nlp, sentiment-analysis, synthetic-data",
url="https://github.com/paramkpr/sentisynth",
)