-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 995 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
33
34
35
36
37
from setuptools import setup
setup(
name='camphor-schedule-notifier',
version='1.0.0',
description='CAMPHOR- Schedule Notifier',
url='https://github.com/camphor-/schedule-notifier',
author='CAMPHOR- (Yusuke Miyazaki)',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
py_modules=['app'],
install_requires=[
'click>=6.0,<7.0',
'requests_oauthlib>=1.2.0',
'python-dateutil>=2.6.0,<3.0',
'pytz>=2016.10',
],
extras_require={
"test": [
"flake8>=3.4.0,<4.0.0",
"mypy>=0.521,<1.0",
"pytest>=3.2.0,<4.0.0",
"tox>=2.5.0,<3.0.0",
],
},
entry_points={
'console_scripts': [
'schedule-notifier=app:main',
],
},
)