diff --git a/CMakeLists.txt b/CMakeLists.txt index 004a7395d..10b4d6067 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CONFIG_32BIT ${CONFIG_32BIT}) set(MVDIST_ONLY ${MVDIST_ONLY}) add_definitions(-D_USE_MATH_DEFINES) -add_definitions(-DMV_SANDBOX_VERSION="0.1.0b4") +add_definitions(-DMV_SANDBOX_VERSION="0.1.0dev11") # Include sub-projects. add_subdirectory ("DearPyGui") diff --git a/Distribution/setup.py b/Distribution/setup.py index 433306a86..47ed62569 100644 --- a/Distribution/setup.py +++ b/Distribution/setup.py @@ -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="jonathanhoffstadt@yahoo.com", # 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