forked from rosenpin/i3-agenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 951 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="i3-agenda",
version="1.2",
author="Tomer Rosenfeld",
author_email="mail@tomerrosenfeld.com",
description="Show your next google calendar event in polybar or i3-bar",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rosenpin/i3-agenda",
download_url="https://github.com/rosenpin/i3-agenda/archive/1.2.tar.gz",
packages=setuptools.find_packages(),
license="Unlicense",
classifiers=[
"Programming Language :: Python :: 3"
],
install_requires=[
"python-bidi",
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib"
],
entry_points={
"console_scripts": [
"i3-agenda = i3_agenda.__init__:main",
],
},
python_requires='>=3.3',
)