forked from Mahdisadjadi/arxivscraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.28 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
43
44
"""\
Provides a python package to get data of academic papers
posted at arXiv.org in a specific date range and category.
Collected data:
Title,
ID,
Authors,
Abstract,
Subcategories,
DOI,
Created (date),
Updated (date)
"""
import sys
try:
from setuptools import setup
except ImportError:
sys.exit("""Error: Setuptools is required for installation.
-> http://pypi.python.org/pypi/setuptools""")
setup(
name = "arxivscraper",
version = "0.0.2",
description = "Get arXiv.org metadate within a date range and category",
author = "Mahdi Sadjadi",
author_email = "[email protected]",
url = "https://github.com/Mahdisadjadi/arxivscraper",
download_url = 'https://github.com/Mahdisadjadi/arxivscraper/archive/0.0.2.tar.gz',
py_modules = [""],
keywords = ["arxiv", "scraper", "api", "citation"],
license = "MIT",
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Text Processing :: Markup :: LaTeX",
],
)