forked from mosquito/aiohttp-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.02 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.02 KB
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
#!/usr/bin/env python
# encoding: utf-8
from __future__ import absolute_import, print_function
from setuptools import setup, find_packages
import aiohttp_xmlrpc as module
setup(
name=module.__name__.replace("_", "-"),
version=module.__version__,
author=module.__author__,
license=module.__license__,
description=module.description,
long_description=open('README.rst').read(),
platforms="all",
classifiers=[
'Environment :: Console',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
include_package_data=True,
zip_safe=False,
package_data={
module.__name__: ['xmlrpc.rng'],
},
packages=find_packages(exclude=('tests',)),
install_requires=(
'aiohttp',
'lxml',
),
extras_require={
'develop': [
'pytest',
'pytest-cov',
'xmltodict',
],
}
)