-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
37 lines (32 loc) · 931 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
37
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [
'requests'
]
test_requirements = []
setup(
name='python-wp',
version='1.0.0',
author='Myles Braithwaite',
author_email='[email protected]',
description='A Python Library for WordPress.',
keywords='wordpress',
url='https://github.com/myles/python-wp',
packages=['wordpress'],
package_dir={'wordpress': 'wordpress'},
include_package_data=True,
long_description=readme,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
license='MIT license',
install_requires=requirements,
zip_safe=False,
test_suite='tests',
tests_require=test_requirements
)