-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 778 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='arxiv_library',
version='0.1',
description='Extract Mathematical Expressions from ArXiV publications',
url='https://github.com/Whadup/arxiv-library',
author=u'Lukas Pfahler, Jonathan Schill, Jan Richter',
author_email='{lukas.pfahler, jonathan.schill, jan-philip.richter}@tu-dortmund.de',
license='MIT',
packages=['arxiv_library',
'arxiv_library.compilation',
'arxiv_library.extraction',
'arxiv_library.io_pkg'],
package_data={
"": ["*.js", "logo.txt"]
},
scripts=['equation-extractor'],
install_requires=['arxiv', 'ray', 'python-magic', 'chardet', 'psutil', 'tqdm'],
zip_safe=False
)