-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 953 Bytes
/
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
from setuptools import setup
import squids
with open("README.md") as f:
long_desc = f.read()
setup(
name="SQuidS",
version=squids.__version__,
author="Ryan Siemens",
author_email="ryanjsiemens@gmail.com",
description="SQuidS is a Python task library for AWS SQS",
license="MIT License",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/rsiemens/squids/",
packages=["squids"],
install_requires=["boto3>=1.0.0,<2.0.0"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["squids=squids.cli:main"]},
)