-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
36 lines (33 loc) · 816 Bytes
/
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
#!/usr/bin/env python
'''Install script. Adjust it to the reality of the package.
'''
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='rst2wp',
version="0.1.0",
description='REST to Wordpress blogging tool',
author='glasserc',
author_email='',
packages=['rst2wp', 'rst2wp.lib'],
license='',
url='https://github.com/glasserc/rst2wp',
long_description=open('README.rst').read(),
install_requires=[
"pyxdg",
"docutils",
"python-magic",
"PIL"],
entry_points={
"console_scripts": [
"rst2wp = rst2wp.rst2wp:main",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Environment :: Console",
],
)