File tree Expand file tree Collapse file tree 5 files changed +11
-10
lines changed
Expand file tree Collapse file tree 5 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ def __init__(self, message):
225225 message (str): The error message.
226226 """
227227 super ().__init__ (message )
228- print (f"AutoCADError : { message } " )
228+ print (f"AutoCAD Error : { message } " )
229229
230230
231231def is_autocad_installed ():
Original file line number Diff line number Diff line change 11from .AutoCAD_Module import *
2- __version__ = "0.1.6 "
2+ __version__ = "0.1.7 "
Original file line number Diff line number Diff line change 44print ("| workflows,enabling efficient drawing manipulations, custom |" )
55print ("| scripting, and automation of repetitive CAD tasks |" )
66print ("| using Python. |" )
7- print ("| version : 0.1.6 By - JonesPeter |" )
7+ print ("| version : 0.1.7 By - JonesPeter |" )
88print ("| github : https://github.com/Jones-peter |" )
99print ("| |" )
1010print ("╚──────────────────────────Unlimited CAD Automation───────────────────────────╝" )
Original file line number Diff line number Diff line change 1- ![ Banner ] ( ./images/banner .png)
1+ [ ![ acadlib.png ] ( https://i.postimg.cc/xjBy2P1f/acadlib .png)] ( https://postimg.cc/5jqF5LzT )
22
3- # AutoCAD - python library Latest Version 0.1.6
3+ # AutoCAD - python library Latest Version 0.1.7
44[ ![ GitHub] ( https://img.shields.io/badge/GitHub-Jones--peter-181717?style=for-the-badge&logo=github&logoColor=white )] ( https://github.com/Jones-peter ) [ ![ Instagram] ( https://img.shields.io/badge/Instagram-jones__peter__-E4405F?style=for-the-badge&logo=instagram&logoColor=white )] ( https://www.instagram.com/jones_peter__/ ) [ ![ LinkedIn] ( https://img.shields.io/badge/LinkedIn-Jones--Peter-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white )] ( https://www.linkedin.com/in/jones-peter-121157221/ ) [ ![ Website] ( https://img.shields.io/badge/Website-jonespeter.site-0078D4?style=for-the-badge&logo=google-chrome&logoColor=white )] ( https://jonespeter.site )
55
66[ ![ PyPI version] ( https://img.shields.io/pypi/v/AutoCAD )] ( https://pypi.org/project/AutoCAD/ )
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
2- import sys
32
4- requirements = ['psutil' ]
5- if sys .platform == 'win32' :
6- requirements .append ('pywin32' )
3+ requirements = ['psutil' , 'pywin32' ]
74
85setup (
96 name = "AutoCAD" ,
10- version = "0.1.6 " ,
7+ version = "0.1.7 " ,
118 packages = find_packages (),
129 install_requires = requirements ,
1310 entry_points = {
3128 "Operating System :: Microsoft :: Windows" ,
3229 ],
3330 include_package_data = True ,
31+ project_urls = {
32+ "Homepage" : "https://github.com/Jones-peter/AutoCAD" ,
33+ "Bug Tracker" : "https://github.com/Jones-peter/AutoCAD/issues" ,
34+ },
3435)
You can’t perform that action at this time.
0 commit comments