Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
taxpon committed Apr 29, 2019
1 parent 9fec724 commit cdb341d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion openpyscad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .custom2dshapes import Custom2dShapes

__name__ = "OpenPySCAD"
__version__ = "0.3.0"
__version__ = "0.3.1"
__author__ = "Takuro Wada"
__email__ = "[email protected]"
__url__ = "https://github.com/taxpon/openpyscad"
Expand Down
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,24 @@

import openpyscad

with open("README.rst", "r") as fh:
long_description = fh.read()


setup(
name=openpyscad.__name__,
packages=find_packages(exclude=['tests*', 'example*']),
version=openpyscad.__version__,
author=openpyscad.__author__,
author_email=openpyscad.__email__,
description="Python library to generate OpenSCAD source code",
long_description=long_description,
long_description_content_type="text/x-rst",
url=openpyscad.__url__,
license=openpyscad.__license__,
install_requires=[
'six',
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
Expand Down

0 comments on commit cdb341d

Please sign in to comment.