forked from taskcluster/tc-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name="tc-admin",
version="2.0.0",
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~=21.0.0",
"click~=6.7",
"blessings~=1.7",
"attrs~=19.3.0",
"memoized==0.3", # no semver..
"sortedcontainers~=2.1.0",
"aiohttp~=2.3.10",
"pytest~=5.2",
"pyyaml~=4.2b1",
],
setup_requires=["pytest-runner", "flake8"],
tests_require=["pytest", "pytest-mock", "pytest-asyncio~=0.10.0", "flake8"],
classifiers=("Programming Language :: Python :: 3",),
entry_points={
"console_scripts": [
"tc-admin = tcadmin.boot:boot",
]},
)