-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 729 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 729 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
29
30
31
32
from setuptools import setup
from ia_recent import \
__title__, __version__, __url__, __author__, __email__, __license__, __doc__
setup(
name=__title__,
version=__version__,
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
description=__doc__.splitlines()[0],
py_modules=[__title__],
install_requires=[
'internetarchive',
'docopt',
],
entry_points={
'internetarchive.cli.plugins': [
__title__ + ' = ' + __title__,
],
'console_scripts': [
__title__.replace('_', '-') + ' = ' + __title__ + ':main',
],
},
tests_require=[
'pytest',
'pytest-pep8',
],
)