-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 923 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="hook-run",
version="1.1.0",
author="Kirusi Msafiri",
author_email="[email protected]",
description="Run commands using Python virtual environment",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Kirusi/hook-run",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Utilities",
],
package_dir={"": "src"},
py_modules=["hookrun"],
python_requires="~=3.7",
entry_points={"console_scripts": ["hook-run = hookrun:run",]},
)