-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (85 loc) · 2.25 KB
/
pyproject.toml
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "fixdatalink"
version = "2.0.2"
authors = [{name="Some Engineering Inc."}]
description = "Data Pipelines for Fix infrastructure data."
license = {file="LICENSE"}
requires-python = ">=3.11"
classifiers = [
# Current project status
"Development Status :: 4 - Beta",
# Audience
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
# License information
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
# Supported python versions
"Programming Language :: Python :: 3.11",
# Supported OS's
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
# Extra metadata
"Environment :: Console",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Utilities",
]
readme = {file="README.md", content-type="text/markdown"}
keywords = ["data source", "data sink", "data synchronization", "data pipeline"]
dependencies = [
"networkx",
"fixinventoryclient>=2.0.0",
"fixinventorylib",
"rich",
"sqlalchemy<2", # TODO: migrate to 2
]
[project.optional-dependencies]
# The different database backends we have tested explicitly
snowflake = [ "snowflake-sqlalchemy" ]
mysql = [ "pymysql" ]
parquet = [ "pyarrow", "boto3", "google-cloud-storage" ]
postgres = [ "psycopg2-binary" ]
# All extra dependencies
extra = [
"boto3",
"urllib3 < 2", # boto3 requires urllib3 < 2
"google-cloud-storage",
"pymysql",
"psycopg2-binary",
"pyarrow",
"snowflake-sqlalchemy",
]
# All dev dependencies
dev = [
"pip-tools",
"types_python_dateutil",
"types_requests",
"types_setuptools",
"types-six"
]
# All test dependencies
test = [
"black",
"coverage",
"flake8",
"hypothesis",
"mypy",
"pep8-naming",
"posthog",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-runner",
"tox",
"wheel",
"fixinventory-plugin-example-collector"
]
[project.urls]
Documentation = "https://fix.com"
Source = "https://github.com/someengineering/fixdatalink"
[build-system]
requires = ["setuptools>=67.8.0", "wheel>=0.40.0", "build>=0.10.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
fixdatalink = ["py.typed"]