-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 779 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 779 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
26
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="bucketman",
version="0.3.1",
description="A terminal application for working with S3 buckets.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"boto3==1.28.54",
"click==8.1.7",
"textual==0.38.1",
],
extras_require={"dev": {"autopep8", "pylint", "keepachangelog", "wheel"}},
include_package_data=True,
entry_points="""
[console_scripts]
bucketman=bucketman.cli:main
""",
)