Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaiaeroastro committed Jun 9, 2024
1 parent a90daa9 commit db77347
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,23 +40,22 @@ def download_file(url):

# Append the example to the README content
readme_content += f"\n\n## An example to create a cube using lib3mf\n\n```python\n{create_cube_example_complete}\n```"
print(readme_content)

# Setup script
# setup(
# name='lib3mf',
# version='2.3.1.post3',
# description='lib3mf is an implementation of the 3D Manufacturing Format file standard',
# long_description=readme_content,
# long_description_content_type='text/markdown',
# packages=find_packages(),
# include_package_data=True,
# zip_safe=False,
# classifiers=[
# 'Development Status :: 5 - Production/Stable',
# 'Intended Audience :: Developers',
# 'License :: OSI Approved :: BSD License',
# 'Programming Language :: Python :: 3',
# 'Operating System :: OS Independent',
# ],
# )
setup(
name='lib3mf',
version='2.3.1.post3',
description='lib3mf is an implementation of the 3D Manufacturing Format file standard',
long_description=readme_content,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)

0 comments on commit db77347

Please sign in to comment.