-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
38 lines (36 loc) · 1.19 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name="tc-admin",
version="4.0.1",
description="Administration of Taskcluster runtime configuration",
long_description=long_description,
long_description_content_type='text/markdown',
author="Dustin Mitchell",
author_email="[email protected]",
url="https://github.com/taskcluster/tc-admin",
packages=find_packages("."),
install_requires=[
"taskcluster>=44.0.0,<76.1",
"click>=8.0.0,<8.2",
"blessings~=1.7",
"attrs>=21.4.0,<24.3",
"sortedcontainers~=2.4.0",
"aiohttp>=3.8.0,<3.12",
"pytest>=7.0.0,<8.4",
"pyyaml~=6.0",
],
setup_requires=["pytest-runner", "flake8"],
tests_require=["pytest", "pytest-mock", "pytest-asyncio>=0.18.0,<0.26", "flake8", "asyncmock"],
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
entry_points={
"console_scripts": [
"tc-admin = tcadmin.boot:boot",
]},
)