Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions examples/inputs/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
thon
from setuptools import setup, find_packages

setup(
name="inputs",
version="0.1.0", # Specify your package version
author="Your Name", # Replace with your name
author_email="[email protected]", # Replace with your email
description="A brief description of your package", # Short description
long_description=open('README.md').read(), # Read long description from README
long_description_content_type='text/markdown', # Specify the markdown format
url="https://github.com/yourusername/inputs", # Replace with your project URL
packages=find_packages('src/inputs'),
package_dir={'': 'src'}
)
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6', # Specify minimum Python version
install_requires=[
# List your package dependencies here
],
)