Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
add setup.py
  • Loading branch information
Thisal-D authored Jan 14, 2025
1 parent 9c742bc commit 5666cd7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from setuptools import setup, find_packages

setup(
name='ctkchart', # Replace with your package name
version='2.1.6', # Replace with your package version
author='Thisal-D', # Replace with your name
author_email='khtdilmith@example.com', # Replace with your email
description='Line-chart Widget for customtkinter, Python library for creating live updating line charts in CustomTkinter.',
long_description=open('README.md').read(), # Ensure you have a README.md file
long_description_content_type='text/markdown',
url='https://github.com/Thisal-D/ctkchart',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.0',
install_requires=[
'customtkinter', # List your package dependencies here
],
include_package_data=True,
)

0 comments on commit 5666cd7

Please sign in to comment.