-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 821 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 821 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='comparxiv',
version='0.1.9',
description='Compare two versions of an arXiv preprint with latexdiff.',
long_description = readme(),
long_description_content_type='text/markdown',
keywords='arxiv preprint comparison latexdiff latex',
url='http://github.com/temken/comparxiv',
author='Timon Emken',
author_email='emken@chalmers.se',
license='MIT',
packages=['comparxiv'],
install_requires=[
'tqdm',
'argparse',
'requests',
'arxiv==1.4.2'
],
entry_points = {
'console_scripts': ['comparxiv=comparxiv.command_line:main'],
},
include_package_data=True,
zip_safe=False)