Skip to content

Commit

Permalink
Added final fixes and released repository on PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
valayDave committed May 28, 2021
1 parent fd18b20 commit 31f4ad7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include Readme.md
include LICENSE.txt
include default_config.ini
include setup.sh
include setup_latex_parsing.sh
include scripts/*.py
include docs/*
18 changes: 17 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
from setuptools import setup, find_packages

version = '2.0.0'
version = '2.0.1'

with open('Readme.md', 'r') as fh:
long_description = fh.read()

setup(name='arxiv_miner',
version=version,
description='ArXiv-Miner: Mine/Scrape Arxiv-Papers To Structured Datasets',
author='Valay Dave',
author_email='valaygaurang@gmail.com',
license='Apache License 2.0',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/valayDave/arxiv-miner',
packages=find_packages(),
py_modules=['arxiv_miner', ],
include_package_data=True,
Expand All @@ -23,4 +29,14 @@
'elasticsearch',
'elasticsearch_dsl',
'luqum',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
])

0 comments on commit 31f4ad7

Please sign in to comment.