-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 756 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 756 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
#!/usr/bin/env python
# Copyright (c) 2018 Red Hat, Inc.
# All Rights Reserved.
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="receptor-satellite",
version="1.0.2",
author="Red Hat Ansible",
url="https://github.com/adamruzicka/receptor-satellite",
license="Apache",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["aiohttp"],
zip_safe=False,
entry_points={"receptor.worker": "receptor_satellite = receptor_satellite.worker"},
classifiers=["Programming Language :: Python :: 3"],
extras_require={"dev": ["pytest", "flake8", "pylint", "black"]},
)