File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4
+ long_description = fh .read ()
5
+
3
6
setup (
4
7
name = "simple-github-automation" ,
5
- version = "0.1.0 " ,
8
+ version = "0.1.1 " ,
6
9
author = "Vikranth Udandarao" ,
7
10
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 (),
12
16
classifiers = [
13
17
"Programming Language :: Python :: 3" ,
14
18
"License :: OSI Approved :: MIT License" ,
You can’t perform that action at this time.
0 commit comments