Skip to content

Commit 4678a0c

Browse files
Update setup with keywords and classifiers
1 parent ef9daad commit 4678a0c

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

setup.py

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def from_file(file_name: str = "requirements.txt", comment_char: str = "#"):
2929

3030
setup(
3131
name="continual-inference",
32-
version="0.1.0",
32+
version="0.1.1",
3333
description="Building blocks for Continual Inference Networks in PyTorch",
3434
long_description=long_description(),
3535
long_description_content_type="text/markdown",
@@ -42,5 +42,28 @@ def from_file(file_name: str = "requirements.txt", comment_char: str = "#"):
4242
"dev": from_file("requirements/dev.txt"),
4343
"docs": from_file("requirements/docs.txt"),
4444
},
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+
],
4669
)

0 commit comments

Comments
 (0)