Skip to content

Commit

Permalink
Merge pull request #3 from IBM/chore/update_deps
Browse files Browse the repository at this point in the history
chore(requirements): update deps
  • Loading branch information
LiyangW authored Jun 29, 2023
2 parents b963845 + 232925d commit a1a6e58
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
pylint==1.7.1
19 changes: 7 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,22 @@
"""

from os import path
from setuptools import setup, find_packages

from setuptools import find_packages, setup

HERE = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(HERE, 'README.md')) as f:
with open(path.join(HERE, "README.md")) as f:
LONG_DESCRIPTION = f.read()

setup(
name="backwork",
version="0.3.0",
version="0.3.1",
description="Backup made easy.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/ibm/backwork",
author="Luiz Aoqui",
author_email="laoqui@ca.ibm.com",
license="Apache 2",
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -31,15 +30,11 @@
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
'License :: OSI Approved :: Apache Software License',
"License :: OSI Approved :: Apache Software License",
"Topic :: Database",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities"
"Topic :: Utilities",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"backwork=backwork:main"
]
}
entry_points={"console_scripts": ["backwork=backwork:main"]},
)

0 comments on commit a1a6e58

Please sign in to comment.