File tree Expand file tree Collapse file tree 5 files changed +11
-6
lines changed
Expand file tree Collapse file tree 5 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11from .AutoCAD_Module import *
2- __version__ = "0.1.7 "
2+ __version__ = "0.1.8 "
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.7 By - JonesPeter |" )
7+ print ("| version : 0.1.8 By - JonesPeter |" )
88print ("| github : https://github.com/Jones-peter |" )
99print ("| |" )
1010print ("╚──────────────────────────Unlimited CAD Automation───────────────────────────╝" )
Original file line number Diff line number Diff line change 11[ ![ acadlib.png] ( https://i.postimg.cc/xjBy2P1f/acadlib.png )] ( https://postimg.cc/5jqF5LzT )
22
3- # AutoCAD - python library Latest Version 0.1.7
3+ # AutoCAD - python library Latest Version 0.1.8
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 2525
2626# The full version, including alpha/beta/rc tags
2727# This should match the version in your README/pyproject.toml
28- release = '0.1.7 '
28+ release = '0.1.8 '
2929
3030
3131# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
2+ import sys
23
3- requirements = ['psutil' , 'pywin32' ]
4+ requirements = ['psutil' ]
5+ # Add Windows-specific requirements only when on Windows
6+ if sys .platform == 'win32' :
7+ requirements .append ('pywin32' )
48
59setup (
610 name = "AutoCAD" ,
7- version = "0.1.7 " ,
11+ version = "0.1.8 " ,
812 packages = find_packages (),
913 install_requires = requirements ,
1014 entry_points = {
3034 include_package_data = True ,
3135 project_urls = {
3236 "Homepage" : "https://github.com/Jones-peter/AutoCAD" ,
37+ "Documentation" : "https://autocad-automation.readthedocs.io/" ,
3338 "Bug Tracker" : "https://github.com/Jones-peter/AutoCAD/issues" ,
3439 },
3540)
You can’t perform that action at this time.
0 commit comments