Skip to content

Commit cebe482

Browse files
authored
Merge pull request #159 from spicecodecli/update-pypi-info
update pypi info
2 parents f08157e + 35cae2d commit cebe482

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
with open("requirements.txt", encoding="utf-16") as f:
55
install_requires = f.read().splitlines()
66

7+
# Read the README.md for PyPI long description
8+
with open("README.md", encoding="utf-8") as f:
9+
long_description = f.read()
10+
711
setup(
812
name="spicecode",
913
version="2.1.5", # version 2.0.0 = all features from N2
@@ -14,5 +18,16 @@
1418
'spice = cli.main:main', # This tells Python to run the main function in cli.main
1519
],
1620
},
21+
description="SpiceCode: The next generation of code analysis.", # Short one-liner
22+
long_description=long_description,
23+
long_description_content_type="text/markdown", # Required if README is in Markdown
24+
author="SpiceCodeCLI",
25+
author_email="spicecodecli@gmail.com",
26+
url="https://github.com/spicecodecli/spicecode", # Optional but helpful
27+
classifiers=[
28+
"Programming Language :: Python :: 3",
29+
"License :: Apache License", # Adjust if needed
30+
"Operating System :: Windows :: Linux :: Possibly MAC, not tested.",
31+
],
1732

1833
)

0 commit comments

Comments
 (0)