Skip to content

Commit

Permalink
📦: update pkg setup script (metadata)
Browse files Browse the repository at this point in the history
  • Loading branch information
frissyn committed Jun 12, 2021
1 parent e52ad8f commit f97544e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@
version = pyke.__version__
readme = open("README.md").read()
url = "https://github.com/frissyn/pyke"
description = pyke.__description__
description = "Make-like build automation tool for Python projects."

setuptools.setup(
name = "pykefile",
name="pykefile",

license = "MIT",
version = version,
description = description,
packages = setuptools.find_packages(),
project_urls = {
license="MIT",
version=version,
description=description,
packages=setuptools.find_packages(),
project_urls={
"Source Code": url,
"Pull Requests": url + "/pulls",
"Issue Tracker": url + "/issues"
"Issue Tracker": url + "/issues",
},

long_description = readme,
long_description_content_type = "text/markdown",
long_description=readme,
long_description_content_type="text/markdown",

include_package_data = True,
python_requires = ">=3.8.0",
include_package_data=True,
python_requires=">=3.8.0",

entry_points = {
entry_points={
"console_scripts": ["pyke = pyke:runner"]
},

classifiers = [
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools"
]
)
"Topic :: Software Development :: Build Tools",
],
)

0 comments on commit f97544e

Please sign in to comment.