Skip to content

Commit c10263c

Browse files
committed
Clean Pypi page
1 parent 6b7b975 commit c10263c

9 files changed

Lines changed: 37 additions & 18 deletions

File tree

.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
.history
22
__pycache__
33
temp.py
4-
input.txt
4+
input.txt
5+
6+
# Build artifacts
7+
build/
8+
dist/
9+
*.egg-info/
10+
__pycache__/
11+
*.pyc
12+
*.pyo
13+
venv/
14+
.venv/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [PythonSolutions](https://vic-nas.github.io/PythonSolutions/)
22

3-
A collection of programming problem solutions from different online judges and competitive programming platforms.
3+
A collection of programming problem solutions and python package
44

55
## ✍️ Solution Style
66

dist/vicutils-0.3-py3-none-any.whl

-3.53 KB
Binary file not shown.

dist/vicutils-0.3.tar.gz

-3.58 KB
Binary file not shown.

setup.py

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
11
from setuptools import setup, find_packages
22

3+
# Read the README for long description
4+
with open("README.md", "r", encoding="utf-8") as fh:
5+
long_description = fh.read()
6+
37
setup(
4-
name="vicutils", # package name
8+
name="vicutils",
59
version="0.4",
6-
packages=find_packages(), # finds vicutils folder automatically
7-
install_requires=[], # optional, for dependencies
10+
packages=find_packages(),
11+
install_requires=[],
12+
13+
# Metadata for PyPI
14+
author="Vic-Nas",
15+
author_email="nasci.victorio@gmail.com", # Optional
16+
description="Utility functions for Python programming",
17+
long_description=long_description,
18+
long_description_content_type="text/markdown",
19+
url="https://github.com/Vic-Nas/PythonSolutions", # Your repo
20+
project_urls={
21+
"Documentation": "https://github.com/Vic-Nas/PythonSolutions/tree/main/vicutils",
22+
"Source": "https://github.com/Vic-Nas/PythonSolutions",
23+
},
24+
classifiers=[
25+
"Programming Language :: Python :: 3",
26+
"License :: OSI Approved :: MIT License",
27+
"Operating System :: OS Independent",
28+
],
29+
python_requires=">=3.6",
830
)

vicutils.egg-info/PKG-INFO

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

vicutils.egg-info/SOURCES.txt

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

vicutils.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

vicutils.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)