-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.26 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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="PaoDing",
version="0.1.1",
description="An NLP-oriented PyTorch wrapper that makes your life easier.",
license="Apache 2.0",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="pytorch deep learning machine NLP AI",
classifiers=[
"Intended Audience :: Science/Research",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
author="Zhaofeng Wu",
author_email="zfw7@cs.washington.edu",
packages=["paoding"],
install_requires=[
"accelerate==0.31.0",
"datasets==2.19.2",
"lightning==2.2.5",
"lightning-utilities==0.11.2",
"numpy==1.26.4",
"rich==13.7.0",
"scikit-learn==1.4.1.post1",
"seaborn==0.13.2",
"tensorboardX==2.6.2.2",
"tokenizers==0.19.1",
"torch==2.3.0",
"torchmetrics==1.4.0.post0",
"tqdm==4.66.4",
"transformers==4.41.2",
"wandb==0.17.1",
],
python_requires=">=3.10.0",
)