Skip to content

Commit

Permalink
fix: add classifiers in setup.py (#380)
Browse files Browse the repository at this point in the history
Signed-off-by: Manjusaka <me@manjusaka.me>
  • Loading branch information
Zheaoli committed Jun 16, 2022
1 parent 33bdd7a commit fc2afe9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,19 @@ def get_version():
ver = version.rsplit(" ", 1)[-1][1:]
return ver

classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Build Tools',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]


setup(
name="envd",
Expand All @@ -74,6 +87,7 @@ def get_version():
"envd=envd.cmd:envd",
],
},
classifiers=classifiers,
zip_safe=False,
ext_modules=[
EnvdExtension(name="envd", sources=["cmd/*"]),
Expand Down

0 comments on commit fc2afe9

Please sign in to comment.