-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
27 lines (25 loc) · 1001 Bytes
/
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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='arxiv_public_data',
version='0.2.0',
description='Download and process publicly available ArXiv data',
long_description=read('README.md'),
keywords='data-mining citation-networks arxiv',
url='',
author="Matt Bierbaum, Colin B. Clement, Kevin P. O'Keeffe, and Alex A. Alemi",
author_email='[email protected]',
license='MIT',
packages=find_packages(), # exclude=['test*']),
install_requires=[''],
python_requires='>=3.6, <4',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Information Analysis'
]
)