@@ -29,7 +29,7 @@ def from_file(file_name: str = "requirements.txt", comment_char: str = "#"):
29
29
30
30
setup (
31
31
name = "continual-inference" ,
32
- version = "0.1.0 " ,
32
+ version = "0.1.1 " ,
33
33
description = "Building blocks for Continual Inference Networks in PyTorch" ,
34
34
long_description = long_description (),
35
35
long_description_content_type = "text/markdown" ,
@@ -42,5 +42,28 @@ def from_file(file_name: str = "requirements.txt", comment_char: str = "#"):
42
42
"dev" : from_file ("requirements/dev.txt" ),
43
43
"docs" : from_file ("requirements/docs.txt" ),
44
44
},
45
- packages = find_packages (exclude = ["tests, docs" ]),
45
+ packages = find_packages (exclude = ["tests" , "docs" , "figures" , "requirements" ]),
46
+ keywords = ["deep learning" , "pytorch" , "AI" , "online" , "inference" , "continual" ],
47
+ classifiers = [
48
+ "Environment :: Console" ,
49
+ "Natural Language :: English" ,
50
+ # How mature is this project? Common values are
51
+ # 3 - Alpha, 4 - Beta, 5 - Production/Stable
52
+ "Development Status :: 3 - Alpha" ,
53
+ # Indicate who your project is intended for
54
+ "Intended Audience :: Developers" ,
55
+ "Topic :: Scientific/Engineering :: Artificial Intelligence" ,
56
+ "Topic :: Scientific/Engineering :: Image Recognition" ,
57
+ "Topic :: Scientific/Engineering :: Information Analysis" ,
58
+ # Pick your license as you wish
59
+ "License :: OSI Approved :: Apache Software License" ,
60
+ "Operating System :: OS Independent" ,
61
+ # Specify the Python versions you support here. In particular, ensure
62
+ # that you indicate whether you support Python 2, Python 3 or both.
63
+ "Programming Language :: Python :: 3" ,
64
+ "Programming Language :: Python :: 3.6" ,
65
+ "Programming Language :: Python :: 3.7" ,
66
+ "Programming Language :: Python :: 3.8" ,
67
+ "Programming Language :: Python :: 3.9" ,
68
+ ],
46
69
)
0 commit comments