-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
36 lines (32 loc) · 1.3 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
import os.path
from setuptools import find_packages, setup
from ValgrindCI import __version__
with open(os.path.join(os.path.dirname(__file__), "README.md"), "r") as f:
long_description = f.read()
setup(
name="ValgrindCI",
version=__version__,
description="Tools to integrate valgrind into your Continuous Integration workflow.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="valgrind valgrind-log-parsing html-report",
author="Bertrand Coconnier",
author_email="bcoconni@users.sourceforge.net",
url="https://github.com/bcoconni/ValgrindCI",
license="GNU General Public License v3.0",
packages=find_packages(),
scripts=["valgrind-ci"],
package_dir={"ValgrindCI": "ValgrindCI"},
package_data={"ValgrindCI": ["data/*.css", "data/*.html", "data/*.js", "py.typed"]},
include_package_data=True,
install_requires=["defusedxml", "jinja2"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
],
)