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 989 B

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
  1. [tool.poetry]
  2. name = "network-graph-visualization"
  3. version = "0.1.6"
  4. description = "This package creates a visualization of a network graph with its attributes displayed."
  5. authors = ["Annalie Kruseman <annaliakruseman@gmail.com>"]
  6. license = "MIT"
  7. readme = "README.rst"
  8. homepage = "https://network-graph-visualization.readthedocs.io/en/latest/"
  9. repository = "https://github.com/annalieNK/network-graph-visualization"
  10. classifiers=[
  11. "Programming Language :: Python :: 3",
  12. "License :: OSI Approved :: MIT License",
  13. "Operating System :: OS Independent",
  14. ]
  15. include = [
  16. "LICENSE",
  17. ]
  18. [[tool.poetry.source]]
  19. name = "network-graph-visualization"
  20. url = "https://test.pypi.org/simple/"
  21. [tool.poetry.dependencies]
  22. python = "^3.8.6"
  23. pandas = "^1.2.2"
  24. matplotlib = "^3.3.4"
  25. networkx = "^2.5"
  26. plotly = "^4.14.3"
  27. numpy = "1.19.5"
  28. [tool.poetry.dev-dependencies]
  29. pytest = "^4.6"
  30. Sphinx = "^3.5.1"
  31. [build-system]
  32. requires = ["poetry-core>=1.0.0"]
  33. build-backend = "poetry.core.masonry.api"
Tip!

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

Comments

Loading...