-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 927 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
31
32
'''Setup module'''
from setuptools import setup, find_packages
setup(
name="snooze-client",
version='1.0.20',
author='Guillaume Ludinard, Florian Dematraz',
author_email='[email protected], ',
description="Client library for snooze server",
long_description_content_type="text/markdown",
url='https://github.com/snoozeweb/snooze_client',
packages=find_packages(include=['snooze_client', 'snooze_client.*']),
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
entry_points={
'console_scripts': [
'snooze_client = snooze_client.cli:snoozegroup',
'snooze_wrap = snooze_client.cli:snooze_wrap',
],
},
install_requires=[
'PyYAML',
'click',
'click-option-group',
'filelock',
'pathlib',
'pyjwt',
'requests',
],
)