forked from Hanse00/LecToCal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (58 loc) · 1.78 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
from codecs import open
def readme():
with open("README.md", encoding="utf-8") as f:
return f.read()
setup(
name="lectocal",
version="1.2.1",
author="Philip 'Hanse00' Mallegol-Hansen",
author_email="[email protected]",
url="https://github.com/Hanse00/LecToCal",
description="Syncronize Lectio schedules to Google Calendar.",
long_description=readme(),
long_description_content_type='text/markdown',
license="Apache 2.0",
python_requires=">=3",
classifiers=[
# Development Status
"Development Status :: 5 - Production/Stable",
# Audience / Topic
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Topic :: Education",
"Topic :: Utilities",
"Topic :: Office/Business :: Scheduling",
# Supported Versions
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
# Environment Type
"Environment :: No Input/Output (Daemon)",
"Environment :: Web Environment",
# License
"License :: OSI Approved :: Apache Software License"
],
keywords="lectio google calendar sync utility",
packages=find_packages(),
install_requires=[
"google-api-python-client",
"requests",
"lxml",
"pytz",
"python-dateutil",
"oauth2client"
],
package_data={
"lectocal": [
"client_secret.json",
]
},
entry_points={
"console_scripts": [
"lectocal.run=lectocal.run:main",
"lectocal.gauth=lectocal.gauth:main"
]
}
)