Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jerankda authored Sep 7, 2024
1 parent a9ce158 commit 2382782
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# setup.py

from setuptools import setup, find_packages

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

setup(
name='simple_linter',
name='splint',
version='0.1',
author="Daniel Jeranko",
author_email="[email protected]",
description='Splint: A simple, easy-to-use Python linter designed for beginner developers.',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jerankda/splint",
packages=find_packages(),
install_requires=[
# Add dependencies here
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3 :: Only",
],
python_requires='>=3.6',
test_suite='tests',
)

0 comments on commit 2382782

Please sign in to comment.