forked from mesozoic/gmail-yaml-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.19 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
from setuptools import find_packages
from setuptools import setup
def contents(filename):
from os.path import abspath, dirname, join
with open(join(abspath(dirname(__file__)), filename)) as fh:
return fh.read()
setup(
name='gmail-yaml-filters',
author='Alex Levy',
author_email='[email protected]',
description='A quick tool for generating Gmail filters from YAML rules.',
long_description=contents('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/mesozoic/gmail-yaml-filters',
version='0.9.4',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=find_packages('.'),
entry_points={
'console_scripts': [
'gmail-yaml-filters = gmail_yaml_filters.main:main',
],
},
install_requires=[
'google-api-python-client',
'lxml',
'oauth2client',
'pyyaml',
'six',
],
)