-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
executable file
·70 lines (60 loc) · 2.13 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 python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
from tarbell import __VERSION__ as VERSION
APP_NAME = 'tarbell'
settings = dict()
# Publish Helper.
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
settings.update(
name=APP_NAME,
version=VERSION,
author=u'Tarbell Project',
author_email='davideads@gmail.com',
url='http://github.com/tarbell-project/tarbell',
license='MIT',
description='A very simple content management system',
long_description="""Read the docs at http://tarbell.readthedocs.org
Tarbell makes it simple to put your work on the web, whether you’re a team of one or a dozen. With Tarbell, you can collaboratively build beautiful websites and publish them with ease.
Tarbell makes use of familiar, flexible tools to take the magic (and frustration) out of publishing to the web. Google spreadsheets handle content management, so changes to your stories are easy to make without touching a line of code. Step-by-step prompts help you set up and configure your project, so that publishing it is a breeze.""",
zip_safe=False,
packages=find_packages(),
include_package_data=True,
install_requires=[
"Flask==0.10.1",
"Frozen-Flask==0.11",
"Jinja2==2.7.3",
"Markdown==2.4.1",
"MarkupSafe==0.23",
"PyYAML==3.11",
"boto==2.48.0",
"clint==0.4.1",
"gnureadline>=6.3.3",
"google-api-python-client==1.6.2",
"keyring==5.3",
"oauth2client==1.5.2",
"python-dateutil>=2.2",
"requests==2.3.0",
"sh==1.09",
"six>=1.10.0",
"xlrd==0.9.3",
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'console_scripts': [
'tarbell = tarbell.cli:main',
],
},
keywords=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
],
)
setup(**settings)