-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (29 loc) · 913 Bytes
/
setup.py
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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='panoptescli',
version='1.1.5',
url='https://github.com/zooniverse/panoptes-cli',
author='Adam McMaster / Zooniverse',
author_email='[email protected]',
description=(
'A command-line client for Panoptes, the API behind the Zooniverse'
),
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click>=6.7,<8.2',
'PyYAML>=5.1,<6.1',
'panoptes-client>=1.6,<2.0',
'humanize>=0.5.1,<4.8',
'pathvalidate>=0.29.0,<2.6',
],
entry_points='''
[console_scripts]
panoptes=panoptes_cli.scripts.panoptes:cli
''',
)