Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
greydoubt authored Feb 10, 2024
1 parent 34b2a83 commit 4c1b3b6
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="YourProjectName",
version="0.1.0",
name="m77",
version="0.0.0.1",
author="greydoubt",
author_email="your@email.com",
description="...",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/greydoubt/m77",
packages=find_packages(),
# Add other parameters as needed
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)

0 comments on commit 4c1b3b6

Please sign in to comment.