-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 943 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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="i3blocks_gcalcli",
version="0.0.1",
description="Shows upcoming event in the status bar and full month when clicked on.",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Topic :: Office/Business :: Scheduling",
],
url="https://github.com/PrimaMateria/i3blocks-gcalcli",
author="Matus Benko",
author_email="[email protected]",
license="MIT",
packages=["i3blocks_gcalcli"],
install_requires=[
"click",
"python-dateutil",
],
entry_points={"console_scripts": ["i3blocks-gcalcli=i3blocks_gcalcli.cli:main"]},
zip_safe=False,
include_package_data=True,
)