-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
50 lines (44 loc) · 1.34 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def readme():
with open('README.rst') as f:
return f.read()
setup(name="EasyBlogger",
version="3.1.3",
author="Raghu Rajagopalan",
author_email="[email protected]",
description=("A (very) easy CLI interface to Blogger blogs"),
license="BSD",
keywords="blogger, cli, markdown, asciidoc",
url="https://github.com/raghur/easyblogger",
packages=['blogger'],
install_requires=[
'pypandoc',
'google-api-python-client',
'oauth2client',
'python-gflags',
'httplib2',
'toml',
'gevent',
'coloredlogs',
'pyyaml',
'chardet'
],
entry_points={
'console_scripts': [
'easyblogger = blogger.main:main'
]
},
long_description=readme(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
)