CoolFace
Apppublic

sidphbot/Researcher

sourceHugging Faceupdated 4y agoView on Hugging Face
3likes
setup.py89 linesDownload Raw Back to root
1import setuptools2 3with open("README.md", "r", encoding="utf-8") as fh:4    long_description = fh.read()5 6setuptools.setup(7    name="Auto-Research",8    version="1.0",9    author="Sidharth Pal",10    author_email="sidharth.pal1992@gmail.com",11    description="Geberate scientific survey with just a query",12    long_description=long_description,13    long_description_content_type="text/markdown",14    url="https://github.com/sidphbot/Auto-Research",15    project_urls={16        "Docs" : "https://github.com/example/example/README.md",17        "Bug Tracker": "https://github.com/sidphbot/Auto-Research/issues",18        "Demo": "https://www.kaggle.com/sidharthpal/auto-research-generate-survey-from-query",19    },20    classifiers=[21        "Development Status :: 5 - Production/Stable",22        "Environment :: Console",23        "Environment :: Other Environment",24        "Intended Audience :: Developers",25        "Intended Audience :: Education",26        "Intended Audience :: Science/Research",27        "Intended Audience :: Other Audience",28        "Topic :: Education",29        "Topic :: Education :: Computer Aided Instruction (CAI)",30        "Topic :: Scientific/Engineering",31        "Topic :: Scientific/Engineering :: Artificial Intelligence",32        "Topic :: Scientific/Engineering :: Information Analysis",33        "Topic :: Scientific/Engineering :: Medical Science Apps.",34        "Topic :: Scientific/Engineering :: Physics",35        "Natural Language :: English",36        "License :: OSI Approved :: GNU General Public License (GPL)",37        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",38        "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",39        "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",40        "Operating System :: POSIX :: Linux",41        "Operating System :: MacOS :: MacOS X",42        "Environment :: GPU",43        "Environment :: GPU :: NVIDIA CUDA",44        "Programming Language :: Python",45        "Programming Language :: Python :: 3",46        "Programming Language :: Python :: 3 :: Only",47        "Programming Language :: Python :: 3.6",48    ],49    package_dir={"": "src"},50    packages=setuptools.find_packages(where="src"),51    python_requires=">=3.7",52    install_requires=[53        "pip",54        "boto3==1.9.118",55        "requests==2.20.0",56        "unicodedata2",57        "pdfminer3k",58        "sentence-transformers",59        "pdftotext",60        "arxiv",61        "arxiv2bib",62        "scholarly",63        "PyMuPDF",64        "Pillow",65        "tabula-py",66        "sentencepiece",67        "keybert",68        "scispacy",69        "amrlib",70        "transformers",71        "en_core_sci_scibert",72        "bert-extractive-summarizer",73        "en_core_sci_lg",74    ],75    extras_require={76        "spacy": ["all"],77    },78    dependency_links=[79        "https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.0/en_core_sci_scibert-0.5.0.tar.gz#egg=en_core_sci_scibert-0.5.0",80        "https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.5.0/en_core_sci_lg-0.5.0.tar.gz#egg=en_core_sci_lg-0.5.0"81    ],82    tests_require=["pytest"],83    entry_points={84        'console_scripts': [85            'cursive = src.Surveyor:main',86        ],87    },88 89)