@@ -9,10 +9,11 @@ style = "semver"
99pattern = " default-unprefixed"
1010
1111[tool .poetry .dependencies ]
12- python = " ^3.7 "
12+ python = " ^3.9 "
1313
1414# Python lack of functionalities from future versions
1515importlib-metadata = { version = " *" , python = " <3.8" }
16+ setuptools = { version = " *" , python = " <3.8" }
1617
1718torch = " >1.8.0"
1819
@@ -25,28 +26,21 @@ neptune = { version = ">=1.0.0", optional = true }
2526torchviz = { version = " *" , optional = true }
2627
2728[tool .poetry .extras ]
28- dev = [
29- " pre-commit" ,
30- " pytest" ,
31- " pytest-cov" ,
32- " pydot" ,
33- " neptune" ,
34- " torchviz" ,
35- ]
29+ dev = [" pre-commit" , " pytest" , " pytest-cov" , " pydot" , " neptune" , " torchviz" ]
3630
3731[tool .poetry ]
3832authors = [
" neptune.ai <[email protected] >" ]
3933description = " Neptune.ai pytorch integration library"
4034repository = " https://github.com/neptune-ai/neptune-pytorch"
4135homepage = " https://neptune.ai/"
42- documentation = " https://docs.neptune.ai/integrations-and-supported-tools/model-training/pytorch "
36+ documentation = " https://docs-beta .neptune.ai"
4337include = [" CHANGELOG.md" ]
4438license = " Apache License 2.0"
4539name = " neptune-pytorch"
4640readme = " README.md"
4741version = " 0.0.0"
4842classifiers = [
49- " Development Status :: 4 - Beta " ,
43+ " Development Status :: 5 - Production/Stable " ,
5044 " Environment :: Console" ,
5145 " Intended Audience :: Developers" ,
5246 " Intended Audience :: Science/Research" ,
@@ -67,17 +61,15 @@ keywords = [
6761 " ML Model Store" ,
6862 " ML Metadata Store" ,
6963]
70- packages = [
71- { include = " neptune_pytorch" , from = " src" },
72- ]
64+ packages = [{ include = " neptune_pytorch" , from = " src" }]
7365
7466[tool .poetry .urls ]
7567"Tracker" = " https://github.com/neptune-ai/neptune-pytorch/issues"
76- "Documentation" = " https://docs.neptune.ai/integrations-and-supported-tools/model-training/pytorch "
68+ "Documentation" = " https://docs-beta .neptune.ai"
7769
7870[tool .black ]
7971line-length = 120
80- target-version = [' py37 ' , ' py38 ' , ' py39 ' , ' py310 ' ]
72+ target-version = [' py39 ' , ' py310 ' , ' py311 ' , ' py312 ' , ' py313 ' ]
8173include = ' \.pyi?$'
8274exclude = '''
8375/(
0 commit comments