-
Notifications
You must be signed in to change notification settings - Fork 130
/
setup.py
32 lines (30 loc) · 1.14 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='python-wordpress-xmlrpc',
version='2.3',
description='WordPress XML-RPC API Integration Library',
author='Max Cutler',
author_email='max@maxcutler.com',
url='https://github.com/maxcutler/python-wordpress-xmlrpc/',
packages=['wordpress_xmlrpc', 'wordpress_xmlrpc.methods'],
license='BSD',
test_suite='nose.collector',
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Environment :: Console',
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Utilities',
'Natural Language :: English',
],
include_package_data=True,
long_description=open('README.rst').read(),
)