-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (32 loc) · 1019 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
import io
from setuptools import setup, find_packages
VERSION = "0.0.1"
project_url = "https://github.com/eugenestarchenko/calendar-scheduling"
DEPENDENCIES = [
"google-api-python-client==2.8.0",
"google-auth-httplib2==0.1.0",
"google-auth-oauthlib==0.4.4",
"click==8.0.1",
]
with io.open("README.md", "r", encoding="utf-8") as f:
README = f.read()
setup(
name="gschedule",
version=VERSION,
url=project_url,
author="Eugene Starchenko",
author_email="[email protected]",
description="Set on-call events on a Google calendar",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(),
entry_points={"console_scripts": ["oncaller = __main__:main"]},
install_requires=DEPENDENCIES,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities",
],
)