Skip to content

Commit fe2ff60

Browse files
committed
Added setup.py file.
1 parent 5731608 commit fe2ff60

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(name='wordpress_xmlrpc',
6+
version='1.0',
7+
description='WordPress XML-RPC API Integration Library',
8+
author='Max Cutler',
9+
author_email='max@maxcutler.com',
10+
url='https://github.com/maxcutler/python-wordpress-xmlrpc/',
11+
packages=['wordpress_xmlrpc', 'wordpress_xmlrpc.methods'],
12+
license='BSD',
13+
)

0 commit comments

Comments
 (0)