forked from patil-suraj/question_generation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.15 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
from question_generation import __version__
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="question_generation",
packages=find_packages(),
version=__version__,
url="https://github.com/patil-suraj/question_generation",
license="MIT",
author="Suraj Patil",
author_email="[email protected]",
description="Question generation is the task of automatically generating questions from a text paragraph.",
install_requires=["transformers>=3.0.0", "nltk", "nlp>=0.2.0", "torch"],
python_requires=">=3.6",
include_package_data=True,
platforms="any",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)