Skip to content

Commit

Permalink
fix: uncomment setup
Browse files Browse the repository at this point in the history
  • Loading branch information
KimiJL committed Jan 31, 2023
1 parent cbde949 commit fdf8606
Showing 1 changed file with 42 additions and 43 deletions.
85 changes: 42 additions & 43 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,46 +142,45 @@ def get_extra_requirements() -> dict:
requirements[entry] = filter_requirements(req_string)
return requirements

print(get_default_requirements())

# setup(
# name=NAME,
# version=__version__,
# description="NL-Augmenter: A Framework for Task-Sensitive Natural Language Augmentation",
# author_email="nl-augmenter@googlegroups.com",

# long_description=read("README.md"),
# long_description_content_type="text/markdown",
# license="MIT",
# url="https://github.com/GEM-benchmark/NL-Augmenter",
# project_urls={
# "Bug Tracker": "https://github.com/GEM-benchmark/NL-Augmenter/issues",
# "Web Page": "https://gem-benchmark.com/nl_augmenter",
# },
# install_requires=get_default_requirements(),
# extras_require=get_extra_requirements(),
# keywords=[
# "augmentation",
# "natural language processing",
# "NLP",
# "filters",
# "deep learning",
# "text processing",
# "machine learning",
# ],
# classifiers=[
# "License :: OSI Approved :: MIT License",
# "Intended Audience :: Developers",
# "Intended Audience :: Information Technology",
# "Intended Audience :: Science/Research",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.7",
# "Operating System :: OS Independent",
# ],
# packages=find_packages(exclude=["test", "docs"]),
# package_data={
# "": ["*.json", "*.txt", "*.tsv", "*.csv", "*.npz", "*.ckpt"]
# },
# include_package_data=True,
# python_requires=">=3.7",
# )

setup(
name=NAME,
version=__version__,
description="NL-Augmenter: A Framework for Task-Sensitive Natural Language Augmentation",
author_email="nl-augmenter@googlegroups.com",

long_description=read("README.md"),
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/GEM-benchmark/NL-Augmenter",
project_urls={
"Bug Tracker": "https://github.com/GEM-benchmark/NL-Augmenter/issues",
"Web Page": "https://gem-benchmark.com/nl_augmenter",
},
install_requires=get_default_requirements(),
extras_require=get_extra_requirements(),
keywords=[
"augmentation",
"natural language processing",
"NLP",
"filters",
"deep learning",
"text processing",
"machine learning",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=["test", "docs"]),
package_data={
"": ["*.json", "*.txt", "*.tsv", "*.csv", "*.npz", "*.ckpt"]
},
include_package_data=True,
python_requires=">=3.7",
)

0 comments on commit fdf8606

Please sign in to comment.