Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pyproject.toml 1.8 KB

You have to be logged in to leave a comment. Sign In
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
  1. [tool.poetry]
  2. name = "poi-analysis"
  3. version = "0.1.0"
  4. description = "Python Boilerplate contains all the boilerplate you need to create a Python package."
  5. license = "MIT license"
  6. authors = ['Benjamin Jones <ben@mottli.app>']
  7. keywords = [
  8. "FIXME",
  9. ]
  10. classifiers = [
  11. "Development Status :: 3 - Alpha",
  12. "Intended Audience :: Developers",
  13. "Intended Audience :: Science/Research",
  14. "License :: OSI Approved :: MIT License",
  15. "Natural Language :: English",
  16. "Programming Language :: Python :: 3",
  17. "Programming Language :: Python :: 3.6",
  18. "Programming Language :: Python :: 3.7",
  19. "Programming Language :: Python :: 3.8"
  20. ]
  21. homepage = "https://github.com/btjones-me/poi-analysis"
  22. repository = "https://github.com/btjones-me/poi-analysis"
  23. readme = "README.md"
  24. [[tool.poetry.source]]
  25. name = "pypi_"
  26. url = "https://pypi.org/simple/"
  27. default = true
  28. # Do not manually edit, use poetry add/remove (--dev) to manage dependencies
  29. [tool.poetry.dependencies]
  30. mypy = "^0.782"
  31. python = "^3.8"
  32. pandas = "^1.2.4"
  33. sklearn = "^0.0"
  34. jupyter = "^1.0.0"
  35. matplotlib = "^3.4.2"
  36. datashader = "^0.12.1"
  37. bokeh = "^2.3.2"
  38. holoviews = "^1.14.3"
  39. umap-learn = "^0.5.1"
  40. pyprojroot = "^0.2.0"
  41. xlrd = "^2.0.1"
  42. openpyxl = "^3.0.7"
  43. plotly = "^4.14.3"
  44. dash = "^1.20.0"
  45. scikit-image = "^0.18.1"
  46. seaborn = "^0.11.1"
  47. lightfm = "^1.16"
  48. loguru = "^0.5.3"
  49. pandas-profiling = "^3.0.0"
  50. [tool.poetry.dev-dependencies]
  51. assertpy = "^1.0"
  52. bandit = "^1.6.2"
  53. black = "^19.10b0"
  54. coverage = "^5.1"
  55. flake8 = "^3.8.3"
  56. isort = "^5.1.0"
  57. liccheck = "^0.4.7"
  58. pytest-cov = "^2.10.0"
  59. pytest-runner = "^5.2"
  60. pytest = "^5.4.3"
  61. tox-gh-actions = "^1.2.0"
  62. tox = "^3.15.2"
  63. toml = "^0.10.1"
  64. keyring = "^23.0.1"
  65. artifacts-keyring = "^0.3.1"
  66. twine = "^3.4.1"
  67. [tool.pytest.ini_options]
  68. addopts = "--cov=poi_analysis --cov-fail-under=95"
  69. [build-system]
  70. requires = ["poetry>=0.12"]
  71. build-backend = "poetry.masonry.api"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...