-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.07 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.07 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
from setuptools import find_packages, setup
setup(
name="libcoveofds",
version="0.10.0",
author="Open Data Services",
author_email="code@opendataservices.coop",
url="https://github.com/Open-Telecoms-Data/lib-cove-ofds",
project_urls={
"Documentation": "https://libcoveofds.readthedocs.io/en/latest/",
"Issues": "https://github.com/Open-Telecoms-Data/lib-cove-ofds/issues",
"Source": "https://github.com/Open-Telecoms-Data/lib-cove-ofds",
},
description="A data review library",
packages=find_packages(),
long_description="A data review library",
python_requires=">=3.10",
install_requires=[
"libcove2",
"jsonschema",
"json-merge-patch",
"rfc3987",
],
extras_require={
"dev": ["pytest", "flake8", "black==22.3.0", "isort", "mypy", "Sphinx"]
},
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
entry_points="""[console_scripts]
libcoveofds = libcoveofds.cli:main""",
include_package_data=True,
)