-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 819 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 819 Bytes
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
import setuptools
setuptools.setup(
name="nc-data-exchange",
version="0.0.3",
author="Martynas Karobcikas",
author_email="martynas.karobcikas@baltic-rcc.eu",
description="A package for building NetworkCode data exchange profiles",
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
"pandas>=2.2.2",
"pydantic>=2.5.2",
"pydantic_settings>=2.1.0",
"xmltodict>=0.13.0",
"openpyxl>=3.1.2",
"lxml>=5.0.0",
"rdflib>=7.0.0",
"triplets>=0.0.7",
"pyshacl>=0.26.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
include_package_data=True,
)