Skip to content

Commit

Permalink
ADDED: setup.py install of CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
thechrisu committed Oct 4, 2017
1 parent e61d5c0 commit b68e65c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ TODO
- Query the arXiv API (atom feed) in your code
- Use enums for arXiv categories
- Download papers in your code as PDF

TODO - Do the above in the commandline
File renamed without changes.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from distutils.core import setup, find_packages
from distutils.core import setup

with open('requirements.txt') as f:
requirements = f.read().splitlines()
Expand All @@ -11,7 +11,8 @@
description='Python Client Library and CLI client for the ArXiv.org API',
author='Christoph Ulshoefer',
author_email='c@culshoefer.com',
packages=find_packages(),
packages=['pyarxiv'],
url='https://github.com/culshoefer/pyarxiv/',
scripts=['scripts/pyarxiv-cli'],
test_suite='tests'
)

0 comments on commit b68e65c

Please sign in to comment.