minor changes for pypi

This commit is contained in:
Tom Schimansky
2021-05-08 12:03:43 +02:00
parent 9958da72c6
commit 0c8e06b150
18 changed files with 50 additions and 1 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
from setuptools import setup
import os
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name="customtkinter",
version="0.5",
author="Tom Schimansky",
license="Creative Commons Zero v1.0 Universal",
url="https://github.com/TomSchimansky/CustomTkinter",
description="Create modern looking gui with tkinter and python",
long_description_content_type="text/markdown",
long_description=read('Readme_pypi.md'),
packages=["customtkinter"],
classifiers=["Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"],
install_requires=["darkdetect"])