-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.06 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
from setuptools import find_packages, setup
setup(
name="libcovebods",
version="0.16.0",
author="Open Data Services",
author_email="[email protected]",
url="https://github.com/openownership/lib-cove-bods",
description="A data review library",
packages=find_packages(),
long_description="A data review library",
python_requires=">=3.8",
install_requires=[
"python-dateutil",
"libcove2>=0.2.1",
"packaging",
"jsonschema>=4.23",
"jscc>=0.2.4",
"pytz",
"ijson",
# Required for jsonschema to validate URIs
"rfc3987",
# Required for jsonschema to validate date-time
"rfc3339-validator",
"jsonpointer",
"pycountry",
],
extras_require={"dev": ["pytest", "flake8", "black==22.3.0", "isort", "mypy"]},
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
entry_points="""[console_scripts]
libcovebods = libcovebods.cli:main""",
include_package_data=True,
)