-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 837 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 837 Bytes
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
from setuptools import setup, find_packages
setup(
name="community-tc-config",
version="1.0.0",
description="Configuration for Taskcluster at https://community-tc.services.mozilla.com/",
author="Dustin Mitchell",
author_email="dustin@mozilla.com",
url="https://github.com/taskcluster/community-tc-config",
packages=find_packages("."),
install_requires=[
"tc-admin>=5.1.1",
"json-e>=4.7.1",
"ruamel.yaml",
],
setup_requires=["pytest-runner"],
tests_require=["pytest-mock", "pytest-asyncio"],
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)