-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·70 lines (61 loc) · 1.64 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
66
67
68
69
70
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Author: Chris Ward <[email protected]>
from setuptools import setup
import sys
from comdev import __version__ as VERSION
if sys.version_info < (3, 4):
sys.exit('Sorry, Python < 3.4 is not supported')
sys.exit('Python 3.6 is RECOMMENDED')
long_description = '''Community Development support library'''
# FIXME: NOTE dependency on https://wkhtmltopdf.org/downloads.html
setup_info = dict(
# Metadata
name='comdev',
version=VERSION,
license='GPLv3',
author='Chris Ward',
author_email='[email protected]',
description=long_description,
long_description=long_description,
url='https://github.com/kejbaly2/comdev',
# Package info
packages=['comdev'],
install_requires=[
'babel',
'click',
'confuse',
'python-dateutil',
#'facepy',
#'feedparser',
#'flask',
# 'gdata-python3', # py3 compatible
'google-api-python-client',
#'ipdb',
#'ipython',
'jinja2',
#'ldap3',
#'meetup-api',
#'oauth2client',
#'openpyxl',
#'pandas',
#'pdfkit',
'premailer',
'progressbar2',
#'python-twitter',
#'pyrebase',
'requests',
#'xlwt',
# required packages for pyandoc:
# - pandoc
# - texlive-latex-bin-bin
# - texlive-collection-fontsrecommended
#'pyandoc',
],
dependency_links=[
'https://github.com/dvska/gdata-python3#egg=gdata'
# ^^^ must run `python setup.py install` though... develop
],
scripts=['bin/comdev'],
)
setup(**setup_info)