-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 2.84 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author ="Pradeep T",
author_email ='[email protected]',
name ='databalancer',
license ='Apache License 2.0',
description ='Databalancer is the python library dedicated to balance the imbalanced text classification datasets before the model training in machine learning applications',
version ='v0.2.0',
long_description =README,
long_description_content_type ='text/markdown',
url ='https://github.com/pradeepdev-1995/databalancer',
packages =['databalancer'],
python_requires =">=3.6.9",
install_requires =[
'numpy==1.20.0',
'pandas==1.2.0',
'pytorch-lightning==0.7.5',
'pytorch-transformers==1.1.0',
'torch==1.12.0',
'torchfile==0.1.0',
'pytorch-lightning==0.7.5',
'transformers==4.10.2',
'matplotlib==3.3.3',
'PyQt5==5.15.7',
'PyQt5-Qt5==5.15.2',
'PyQt5-sip==12.11.0',
'pyRFC3339==1.0',
'nlpaug==1.1.10',
'textattack==0.3.5',
'fastt5==0.1.4',
'tensorflow-text==2.9.0'
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers'
]
)