Skip to content

Commit bf1e971

Browse files
author
apinanyogaratnam
committed
refactor: setup
1 parent d88cbc4 commit bf1e971

6 files changed

Lines changed: 215 additions & 138 deletions

File tree

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ tqdm = "==4.64.1"
1515
pytest = "==7.2.0"
1616

1717
[requires]
18-
python_version = "3.10"
18+
python_version = "3.8"

Pipfile.lock

Lines changed: 205 additions & 128 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

base_python_package_template/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

cachier_client/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from cachier_client.main import greetings
2+
3+
__all__ = [
4+
greetings,
5+
]

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
long_description = f.read()
55

66
setuptools.setup(
7-
name="base-package-name",
7+
name="cachier-client",
88
version="0.1.0",
99
author="apinanyogaratnam",
1010
author_email="apinanapinan@icloud.com",
11-
description="A base package for Python",
11+
description="A cachier python client package",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url="https://github.com/apinanyogaratnam/base-python-package-template",
14+
url="https://github.com/cachier-cache/cachier-python-client",
1515
packages=setuptools.find_packages(),
1616
classifiers=[
1717
"Programming Language :: Python :: 3",
1818
"License :: OSI Approved :: MIT License",
1919
"Operating System :: OS Independent",
2020
],
21-
python_requires=">=3.10.4",
21+
python_requires=">=3.8",
2222
install_requires=[],
2323
)

0 commit comments

Comments
 (0)