-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
47 lines (43 loc) · 1.25 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from __future__ import absolute_import, print_function
import aiohttp_xmlrpc as module
from setuptools import find_packages, setup
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
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",
],
},
python_requires=">=3.6",
project_urls={
"Source": "https://github.com/mosquito/aiohttp-xmlrpc",
},
)