-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
79 lines (75 loc) · 2.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
from codecs import open
from os import path
from setuptools import setup
from versioningit import get_cmdclasses
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
readme = f.read()
setup(
name="python-epo-ops-client",
cmdclass=get_cmdclasses(),
description=(
"Python client for EPO OPS, "
"the European Patent Office's Open Patent Services API."
),
long_description_content_type="text/markdown",
long_description=readme,
author="George Song",
author_email="[email protected]",
maintainer="Andreas Motl",
maintainer_email="[email protected]",
url="https://github.com/ip-tools/python-epo-ops-client",
download_url="https://pypi.org/project/python-epo-ops-client/#files",
packages=["epo_ops"],
package_dir={"epo_ops": "epo_ops"},
include_package_data=True,
install_requires=[
"dogpile.cache<1.4",
"importlib-metadata; python_version<'3.8'",
"python-dateutil<2.10",
"requests>=2.27,<3",
"six<2",
],
extras_require={
"develop": [
"black<25",
"ruff<0.7; python_version >= '3.7'",
"twine<6",
"wheel<1",
],
"test": [
"pytest<9",
"pytest-cache<2",
"pytest-cov<5.1",
"python-dotenv<1.1",
"responses<0.26",
],
},
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=[
"ops",
"epo",
"epo-ops",
"patent-data",
"patent-office",
"patent-data-api",
"european patent office",
"open patent services",
],
)