-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
40 lines (36 loc) · 1.44 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import find_packages
from setuptools import setup
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
requirements = ["Click>=7.0", "strictyaml", "invoke", "attrs"]
setup(
author="ESSS",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description="HookMan is a python package that provides a plugin management system to applications, specially those who are written (in totally or partially) in C++.",
entry_points={"console_scripts": ["hookman=hookman.__main__:cli"]},
extras_require={"docs": ["sphinx >= 1.4", "sphinx_rtd_theme", "sphinx-autodoc-typehints"]},
install_requires=requirements,
license="MIT license",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="hookman",
name="python-hookman",
python_requires=">=3.10",
packages=find_packages(include=["hookman"]),
url="https://github.com/esss/hookman",
use_scm_version=True,
setup_requires=["setuptools_scm"],
zip_safe=False,
)