Skip to content

Commit

Permalink
[DISTRIBUTION] updated setup.py File ci run
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt committed Aug 13, 2020
1 parent 53bedad commit 7c44143
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
21 changes: 15 additions & 6 deletions Distribution/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7c44143

Please sign in to comment.