mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
update setup.py
This commit is contained in:
parent
6aef56e4d6
commit
bb43f4c3e1
1 changed files with 22 additions and 23 deletions
45
setup.py
45
setup.py
|
@ -1013,9 +1013,30 @@ class SaltDistribution(distutils.dist.Distribution):
|
|||
with open(SALT_LONG_DESCRIPTION_FILE, encoding="utf-8") as f:
|
||||
self.long_description = f.read()
|
||||
self.long_description_content_type = "text/x-rst"
|
||||
self.python_requires = ">=3.5"
|
||||
self.classifiers = [
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Cython",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Information Technology",
|
||||
"Intended Audience :: System Administrators",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Topic :: System :: Clustering",
|
||||
"Topic :: System :: Distributed Computing",
|
||||
]
|
||||
self.author = "Thomas S Hatch"
|
||||
self.author_email = "thatch45@gmail.com"
|
||||
self.url = "http://saltstack.org"
|
||||
self.url = "https://saltproject.io"
|
||||
self.cmdclass.update(
|
||||
{
|
||||
"test": TestCommand,
|
||||
|
@ -1072,28 +1093,6 @@ class SaltDistribution(distutils.dist.Distribution):
|
|||
return modules
|
||||
|
||||
# ----- Static Data -------------------------------------------------------------------------------------------->
|
||||
@property
|
||||
def _property_classifiers(self):
|
||||
return [
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Cython",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Information Technology",
|
||||
"Intended Audience :: System Administrators",
|
||||
"License :: OSI Approved :: Apache Software License",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Topic :: System :: Clustering",
|
||||
"Topic :: System :: Distributed Computing",
|
||||
]
|
||||
|
||||
@property
|
||||
def _property_dependency_links(self):
|
||||
return [
|
||||
|
|
Loading…
Add table
Reference in a new issue