forked from hoffstadt/DearPyGui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DISTRIBUTION] updated setup.py File ci run
- Loading branch information
Showing
2 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,19 +19,28 @@ def has_ext_modules(foo): | |
return True | ||
|
||
setup( | ||
name='dearpygui', # Required | ||
version=DEARPYGUI_VERSION, # Required | ||
description='DearPyGui', # Required | ||
long_description=long_description, # Optional | ||
long_description_content_type='text/markdown', # Optional (see note above) | ||
url='https://github.com/RaylockLLC/DearPyGui', # Optional | ||
name='dearpygui', # Required | ||
version=DEARPYGUI_VERSION, # Required | ||
author="Jonathan Hoffstadt and Preston Cothren", # Optional | ||
author_email="[email protected]", # Optional | ||
description='DearPyGui: A simple Python GUI Toolkit', # Required | ||
long_description=long_description, # Optional | ||
long_description_content_type='text/markdown', # Optional | ||
url='https://github.com/hoffstadt/DearPyGui', # Optional | ||
license = 'MIT', | ||
python_requires='>=3.8', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows :: Windows 10', | ||
'Operating System :: POSIX :: Linux', | ||
'Programming Language :: Python :: 3.8', | ||
'Topic :: Software Development :: User Interfaces', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
packages=find_packages(exclude=['contrib', 'docs', 'tests']), # Required | ||
package_data={ # Optional | ||
|