-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1.12 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="text-denoising",
version="0.1.1", # Start with a small version number, you can increment it for subsequent releases
author="Zhi-Rui, Tam",
author_email="[email protected]",
description="A package for text denoising : UL2",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/your_username/text_denoising", # If you have a repo for this package
packages=find_packages(include=["text_denoising"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # You can change this if you have another preferred license
"Operating System :: OS Independent",
],
install_requires=[
"numpy>=1.18.0",
"torch>=1.7.0",
"transformers",
],
extras_require={
"test": [
# Add any additional testing dependencies here
"pytest>=6.0.0",
]
},
python_requires='>=3.6',
)