-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.59 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
41
42
43
44
45
"""Build and installation script for report_creator."""
from setuptools import find_packages, setup
from report_creator.__version__ import __version__
# Function to read the requirements.txt file
def read_requirements():
with open("requirements.txt") as req:
content = req.readlines()
return [line.strip() for line in content]
setup(
name="report_creator",
version=__version__,
author="Daren Race",
author_email="[email protected]",
description="Create self-contained HTML reports from Python.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT",
keywords="python, html, reports, report, creator, generator, markdown, yaml, plot, chart, table, blog",
url="https://github.com/darenr/report_creator",
packages=find_packages(),
package_data={"report_creator": ["templates/*"]},
python_requires=">=3.9",
maintainer="Daren Race",
maintainer_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
install_requires=read_requirements(),
include_package_data=True,
)