aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 92e4ed7942454031e4ba148bfdc228ede9890dab (plain)
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="cros-ec-tests",
    description="Chrome OS Embedded Controller Test Suite",
    version="0.1",
    long_description=long_description,
    long_description_content_type="text/markdown",
    author="Fabien Lahoudere, Enric Balletbo",
    author_email="aragua@collabora.com, enric.balletbo@collabora.com",
    url="https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/cros-ec-tests.git",
    packages=setuptools.find_packages(),
    classifiers=[
        "Intended Audience :: Developers",
        "License :: OSI Approved :: LGPL-2.1-or-later",
        "Natural Language :: English",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Topic :: Software Development :: Tests",
    ],
)