Skip to content

Commit f3e3803

Browse files
committedOct 29, 2024
v0.1.1
1 parent 5ccfd46 commit f3e3803

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed
 

‎setup.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name="simple-github-automation",
5-
version="0.1.0",
8+
version="0.1.1",
69
author="Vikranth Udandarao",
710
author_email="vikranth22570@iiitd.ac.in",
8-
description="A package for automating GitHub workflows",
9-
packages=find_packages("src"),
10-
package_dir={"": "src"},
11-
install_requires=["requests"], # or add 'PyGithub' if you prefer
11+
description="A Python package for automating GitHub tasks.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/Vikranth3140/simple-github-automation",
15+
packages=find_packages(),
1216
classifiers=[
1317
"Programming Language :: Python :: 3",
1418
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)
Please sign in to comment.