Skip to content

Commit c07fd3a

Browse files
committed
Dev: Version update
1 parent ff494b1 commit c07fd3a

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

AutoCAD/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from .AutoCAD_Module import *
2-
__version__ = "0.1.7"
2+
__version__ = "0.1.8"

AutoCAD/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
print("| workflows,enabling efficient drawing manipulations, custom |")
55
print("| scripting, and automation of repetitive CAD tasks |")
66
print("| using Python. |")
7-
print("| version : 0.1.7 By - JonesPeter |")
7+
print("| version : 0.1.8 By - JonesPeter |")
88
print("| github : https://github.com/Jones-peter |")
99
print("| |")
1010
print("╚──────────────────────────Unlimited CAD Automation───────────────────────────╝")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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/)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
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 ---------------------------------------------------

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from 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

59
setup(
610
name="AutoCAD",
7-
version="0.1.7",
11+
version="0.1.8",
812
packages=find_packages(),
913
install_requires=requirements,
1014
entry_points={
@@ -30,6 +34,7 @@
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
)

0 commit comments

Comments
 (0)