-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
54 lines (49 loc) · 1.56 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages # noqa: H301
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="artifactory-cleanup",
version="1.0.13",
description="Rules and cleanup policies for Artifactory",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Alexey Burov",
author_email="allburov@gmail.com",
url="https://github.com/devopshq/artifactory-cleanup",
keywords=["DevOpsHQ"],
packages=find_packages(exclude=["tests"]),
entry_points={
"console_scripts": [
"artifactory-cleanup=artifactory_cleanup.cli:ArtifactoryCleanupCLI"
]
},
install_requires=[
"hurry.filesize",
"prettytable",
"plumbum",
"dohq-artifactory",
"teamcity-messages",
"treelib",
"attrs",
"pydash",
"pyyaml",
"cfgv~=3.3",
'typing-extensions; python_version < "3.8.0"',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
python_requires=">=3.6",
include_package_data=True,
)