Skip to content

Commit

Permalink
chore: Adding project properties in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
saikiran2603 committed Mar 28, 2022
1 parent fe7b721 commit f5881ef
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 34 deletions.
33 changes: 1 addition & 32 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,4 @@ requires = ["setuptools>=42",
"croniter>=1.3.4",
"kubernetes>=23.3.0",
"python-dateutil>=2.8.2"]
build-backend = "setuptools.build_meta"

[project.urls]
homepage = "https://github.com/saikiran2603/k8s-scheduler/"
documentation = "https://github.com/saikiran2603/k8s-scheduler/blob/master/README.md"
source = "https://github.com/saikiran2603/k8s-scheduler/"
download = "https://github.com/saikiran2603/k8s-scheduler/releases"
tracker = "https://github.com/saikiran2603/k8s-scheduler/issues"

[project]
name = "k8s-scheduler"
license = {file = "LICENSE"}

classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
build-backend = "setuptools.build_meta"
23 changes: 21 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,30 @@
url="https://github.com/saikiran2603/k8s-scheduler/",
project_urls={
"Bug Tracker": "https://github.com/saikiran2603/k8s-scheduler/issues",
"homepage": "https://github.com/saikiran2603/k8s-scheduler/",
"documentation": "https://github.com/saikiran2603/k8s-scheduler/blob/master/README.md",
"source": "https://github.com/saikiran2603/k8s-scheduler/",
"download": "https://github.com/saikiran2603/k8s-scheduler/releases",
"tracker": "https://github.com/saikiran2603/k8s-scheduler/issues"
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
Expand Down

0 comments on commit f5881ef

Please sign in to comment.