pyproject.toml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. [build-system]
  2. requires = ["setuptools>=61.0", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "data-transport"
  6. dynamic = ["version"]
  7. authors = [
  8. {name="Steve L. Nyemba" , email = "info@the-phi.com"},
  9. ]
  10. description = ""
  11. readme = "README.md"
  12. license = {text = "LICENSE"}
  13. keywords = ["mongodb","duckdb","couchdb","rabbitmq","file","read","write","s3","sqlite"]
  14. classifiers = [
  15. "License :: OSI Approved :: MIT License",
  16. "Topic :: Utilities",
  17. ]
  18. dependencies = [
  19. "termcolor","sqlalchemy", "aiosqlite","duckdb-engine",
  20. "typer","pandas","numpy","sqlalchemy","pyarrow",
  21. "plugin-ix@git+https://github.com/lnyemba/plugins-ix"
  22. ]
  23. [project.optional-dependencies]
  24. sql = ["mysql-connector-python","psycopg2-binary","nzpy","pymssql","duckdb-engine","aiosqlite"]
  25. nosql = ["pymongo","cloudant"]
  26. cloud = ["pandas-gbq","google-cloud-bigquery","google-cloud-bigquery-storage", "databricks-sqlalchemy","pyncclient","boto3","boto","botocore"]
  27. warehouse = ["pydrill","pyspark","sqlalchemy_drill"]
  28. rabbitmq = ["pika"]
  29. sqlite = ["aiosqlite"]
  30. aws3 = ["boto3","boto","botocore"]
  31. nextcloud = ["pyncclient"]
  32. mongodb = ["pymongo"]
  33. netezza = ["nzpy"]
  34. mysql = ["mysql-connector-python"]
  35. postgresql = ["psycopg2-binary"]
  36. sqlserver = ["pymssql"]
  37. http = ["flask-session"]
  38. all = ["mysql-connector-python","psycopg2-binary","nzpy","pymssql","duckdb-engine","aiosqlite","pymongo","cloudant","pandas-gbq","google-cloud-bigquery","google-cloud-bigquery-storage", "databricks-sqlalchemy","pyncclient","boto3","boto","botocore","pydrill","pyspark","sqlalchemy_drill", "pika","aiosqlite","boto3","boto","botocore", "pyncclient"]
  39. [project.urls]
  40. Homepage = "https://healthcareio.the-phi.com/git/code/transport.git"
  41. #[project.scripts]
  42. #transport = "transport:main"
  43. [tool.setuptools]
  44. include-package-data = true
  45. zip-safe = false
  46. script-files = ["bin/transport"]
  47. [tool.setuptools.packages.find]
  48. include = ["info","info.*", "transport", "transport.*"]
  49. [tool.setuptools.dynamic]
  50. version = {attr = "info.__version__"}
  51. #authors = {attr = "meta.__author__"}
  52. # If you have a info.py file, you might also want to include the author dynamically:
  53. # [tool.setuptools.dynamic]
  54. # version = {attr = "info.__version__"}
  55. # authors = {attr = "info.__author__"}