forked from anticodeninja/michel2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (37 loc) · 1.21 KB
/
setup.py
File metadata and controls
48 lines (37 loc) · 1.21 KB
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
# This Source Code Form is subject to the terms of the
# Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
# with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import print_function
from setuptools import setup, find_packages
from codecs import open
from os import path
import sys
here = path.abspath(path.dirname(__file__))
if sys.version_info < (3, 3):
print('Sorry, only python>=3.3 is supported', file=sys.stderr)
sys.exit(1)
with open(path.join(here, 'LICENSE.txt'), encoding='utf-8') as f:
license = f.read()
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='michel2',
version='0.8.0',
description='push/pull/sync an org-mode file to other task-list systems',
long_description=long_description,
url='https://github.com/anticodeninja/michel2',
maintainer='anticodeninja',
author='anticodeninja',
license=license,
packages=find_packages(),
install_requires=[
'google-api-python-client',
'oauth2client'
],
python_requires='>=3.3',
entry_points={
'console_scripts' : [
'michel=michel:main',
],
},
)