forked from slgobinath/gcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (44 loc) · 1.67 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
import os
import setuptools
requires = [
'python-dateutil',
'google-api-python-client',
'oauth2client',
'httplib2'
]
_ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_ROOT, 'README.md')) as f:
long_description = f.read()
def __package_files(directory):
"""
Collect the package files.
"""
paths = []
for (path, _, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
setuptools.setup(
name="gcalendar",
version="0.4.1",
description="Read Google Calendar events from your terminal.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Gobinath Loganathan",
author_email="[email protected]",
url="https://github.com/slgobinath/gcalendar",
download_url="https://github.com/slgobinath/gcalendar/archive/v0.4.1.tar.gz",
packages=setuptools.find_packages(),
package_data={},
install_requires=requires,
entry_points={'console_scripts': ['gcalendar = gcalendar.__main__:main']},
keywords='linux utility google-calendar',
classifiers=[
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in
'3 3.4 3.5 3.6 3.7 3.8 3.9'.split()]
)